0
このファイルを実行すると何も得られません。代わりにconsole.log(getInfo());
を実行した場合、私はちょうどPromise <pending>
を得ます。助けてください。私のapiリクエストは何も返されません。エラーメッセージもありません
function getInfo(){
var url = `https://api.nutritionix.com/v1_1/search/cheddar%20cheese?fields=item_name%2Citem_id%2Cbrand_name%2Cnf_calories%2Cnf_total_fat&appId=${apiId}&appKey=${apiKey}`;
return(
fetch(url)
.then(data=>{
return JSON.parse(data);
})
);
}
getInfo().then(result =>{
console.log(result);
現在の質問に関連する質問をリンクされている方法@JF:この(私は
apiId
とapiKey
を知らないため、エラーを記録します)のようなresponse.json()
を使用しますか? – guest271314@ZachFrotten https://stackoverflow.com/help/someone-answersを参照してください。 – guest271314