一只斗牛犬
描述您正在寻找一个for循环或一个forEach循环response.data.forEach(element => { //loop code }); ,如果使用for您想要使用的循环for (let i = 0; i < response.data.length; i++) { //loop over response.data[i] }例子for循环let data = [ { "id": 20789, "name": "Sandbox Test Project", "display_name": "1234 - Sandbox Test Project", "project_number": "1234", "address": "6309 Carpinteria Avenue", "city": "Carpinteria", "state_code": "CA", "country_code": "US", "zip": "93013", "county": "Santa Barbara County", "time_zone": "US/Pacific", "latitude": 34.3850438, "longitude": -119.4908492, "stage": "None", "phone": null, "created_at": "2020-04-03T00:35:03Z", "updated_at": "2020-04-03T00:45:17Z", "active": true, "origin_id": null, "origin_data": null, "origin_code": null, "owners_project_id": null, "estimated_value": null, "project_region_id": null, "project_bid_type_id": null, "project_owner_type_id": null, "photo_id": 310560, "start_date": null, "completion_date": null, "total_value": null, "accounting_project_number": null, "store_number": null, "designated_market_area": null, "company": { "id": 27669, "name": "Example Procore App" } }, { "id": 20758, "name": "Standard Project Template", "display_name": "Standard Project Template", "project_number": null, "address": null, "city": null, "state_code": null, "country_code": null, "zip": null, "county": null, "time_zone": "US/Pacific", "latitude": null, "longitude": null, "stage": "None", "phone": null, "created_at": "2020-04-03T00:25:02Z", "updated_at": "2020-04-03T00:30:01Z", "active": true, "origin_id": null, "origin_data": null, "origin_code": null, "owners_project_id": null, "estimated_value": null, "project_region_id": null, "project_bid_type_id": null, "project_owner_type_id": null, "photo_id": null, "start_date": null, "completion_date": null, "total_value": null, "accounting_project_number": null, "store_number": null, "designated_market_area": null, "company": { "id": 27669, "name": "Example Procore App" } }]for (let i = 0; i < data.length; i++) { console.log('index', i, data[i]);}foreach循环let data = [ { "id": 20789, "name": "Sandbox Test Project", "display_name": "1234 - Sandbox Test Project", "project_number": "1234", "address": "6309 Carpinteria Avenue", "city": "Carpinteria", "state_code": "CA", "country_code": "US", "zip": "93013", "county": "Santa Barbara County", "time_zone": "US/Pacific", "latitude": 34.3850438, "longitude": -119.4908492, "stage": "None", "phone": null, "created_at": "2020-04-03T00:35:03Z", "updated_at": "2020-04-03T00:45:17Z", "active": true, "origin_id": null, "origin_data": null, "origin_code": null, "owners_project_id": null, "estimated_value": null, "project_region_id": null, "project_bid_type_id": null, "project_owner_type_id": null, "photo_id": 310560, "start_date": null, "completion_date": null, "total_value": null, "accounting_project_number": null, "store_number": null, "designated_market_area": null, "company": { "id": 27669, "name": "Example Procore App" } }, { "id": 20758, "name": "Standard Project Template", "display_name": "Standard Project Template", "project_number": null, "address": null, "city": null, "state_code": null, "country_code": null, "zip": null, "county": null, "time_zone": "US/Pacific", "latitude": null, "longitude": null, "stage": "None", "phone": null, "created_at": "2020-04-03T00:25:02Z", "updated_at": "2020-04-03T00:30:01Z", "active": true, "origin_id": null, "origin_data": null, "origin_code": null, "owners_project_id": null, "estimated_value": null, "project_region_id": null, "project_bid_type_id": null, "project_owner_type_id": null, "photo_id": null, "start_date": null, "completion_date": null, "total_value": null, "accounting_project_number": null, "store_number": null, "designated_market_area": null, "company": { "id": 27669, "name": "Example Procore App" } }];data.forEach(element => { console.log(element);});