我正在函数内部调用fetch,但是语句并未按照我希望的方式执行。
getHubspotData('https://api.hubapi.com/deals/v1/deal/paged?hapikey=demo&properties=dealname&properties=dealstage&properties=closedate&properties=dealtype&properties=type&properties=hubspot_owner_id&properties=amount&properties=notes_last_updated&includeAssociations=true');
function getHubspotData(url){
console.log("URL: "+url);
fetch(url)
.then((resp) => resp.json()) // Transform the data into json
.then(function(data) {
console.log("Inside Fetch");
})
console.log("Outside Fetch");
}
首先执行“外部访存”语句,然后执行“内部访存”。
我该如何首先执行“内部提取”中的代码,以使输出为
Inside Fetch
Outside Fetch