gpt4 book ai didi

javascript - data.json() 不是函数(React)

转载 作者:行者123 更新时间:2023-12-02 21:21:09 27 4
gpt4 key购买 nike

我有以下代码:

 getWeather = e => {
e.preventDefault();
const api_call = fetch(
`http://api.openweathermap.org/data/2.5/weather?q=London,uk&appid=${API_KEY}`
);
const data = api_call.json();
console.log(data);
};

但我一直收到 .json() 不是一个函数。不知道为什么我会得到这个。

最佳答案

那是因为您没有等待请​​求结束。

试试这个:

const api_call = fetch(
`http://api.openweathermap.org/data/2.5/weather?q=London,uk&appid=${API_KEY}`
).then(res => res.json()).then(console.log);

关于javascript - data.json() 不是函数(React),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60839014/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com