我知道这是一个典型的错误,但我无法弄清楚,问题出在哪里?浏览器中的链接通常使用JSON结构打开,但在weatherRequest.json()
我甚至收到错误Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0
。
请帮助......
let fetchWeather = async () => {
const weatherRequest = await fetch(`api.openweathermap.org/data/2.5/forecast?q=München,DE&appid=my_key`);
const weatherStore = await weatherRequest.json();
console.log('weatherStore', weatherStore);
}
fetchWeather();