我试图使用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;
当我使用Chrome转到the link that I am making a request to时,它似乎工作正常。我在JS中做错了什么?