如何使维基百科API与Fetch一起使用?

时间:2018-05-09 13:16:42

标签: javascript fetch-api wikipedia-api

我试图使用MediaWiki Wikipedia API对维基百科进行简单搜索。出于某种原因,当我使用Fetch API时,它不起作用。这是我的代码:



const text = document.getElementById('content');

fetch('https://en.wikipedia.org/w/api.php?action=query&format=json&list=search&srlimit=100&srsearch=apple')
  .then(res => res.json())
  .then(json => text.innerHTML = 'Success!')
  .catch(err => text.innerHTML = 'Failure :(');

<div id="content"></div>
&#13;
&#13;
&#13;

当我使用Chrome转到the link that I am making a request to时,它似乎工作正常。我在JS中做错了什么?

0 个答案:

没有答案