javascript 获取 api 不工作并给出错误

javascript fetch api not working and giving error

我正在使用 javascript 调用 url。但是在 chrome 控制台 (F12)

中给我错误

请帮助我。

我期待一个结果

fetch(url).than((res) => {
  console.log(res.JSON())
})

但出现错误

打错了。 只需使用 then 而不是 than.json() 而不是 .JSON()

fetch(URL).then(res => {
  console.log(res.json())
})

了解更多here

您有一个拼写错误。应该是 .then 而不是 .than