Fetch()实际上并不提取数据

时间:2017-12-29 14:55:40

标签: javascript fetch-api

我刚刚开始关注Fetch API,但实际上我遇到了一些麻烦。作为新手,我的第一个假设是我做错了。

我的第一次尝试是使用随机用户的无密钥API,这非常有效:

fetch("https://randomuser.me/api/").then((response) => response.json())
  .then((data) => console.log(data))
  .catch((error) => console.log(error))

然后,我继续使用Wunderground Weather进行密钥API,但是效果不佳:

fetch("http://api.wunderground.com/api/{API-KEY}/conditions/q/CA/San_Francisco.json").then((response) => response.json())
  .then((data) => console.log(data))
  .catch((error) => console.log(error))

在您提问之前,我使用实际的API密钥更改了URL字符串中的“{API-KEY}”。但由于某种原因,这个API调用没有返回任何内容。

API网址直接从Wunderground API文档here进行复制/粘贴,并且如果粘贴到Chrome的地址栏中,则会成功返回JSON。

Here是我正在使用的codepen.io(没有API-KEY)。

1 个答案:

答案 0 :(得分:1)