私はFetch APIを使用したいと思いますが、実際にはそれはmecanismではありません。FETCH API return undefined
は私が私のHTMLを持っていると私は結果を割り当てたい私のこのコードをフェッチ:
const weather = "http://api.apixu.com/v1/current.json?key=cba287f271e44f88a60143926172803&q=Paris";
const array = [];
fetch(weather)
.then(blob => blob.json())
.then(data => {
array.push(data.current.humidity)
console.log(array[0])
}
);
document.querySelector('h1').innerHTML = array[0];
i「が未定義」はconsole.logしかしリターンで結果を持っています。なぜ説明できますか?
おかげでたくさん