我正在尝试将 newsapi.org 中的新闻解析为 Jquery Mobile 应用程序,但它似乎不起作用,如下我的 js 到 html 代码中。有人可以给我一个关于发生了什么的胶水吗?它只显示没有从新闻 api 回复的页面:
<script>
$.getJSON("https://newsapi.org/v1/articles?source=bbc-sport&sortBy=top&apiKey=xxxxxxxxxxxxxxxxxx", function( data ) {
console.log(data.articles)
var arrayOfData = data.articles
for (var i = 0; i < 5; i++) {
document.write(arrayOfData[i].title);
document.write("<br>");
document.write(arrayOfData[i].author);
document.write("<br>");
document.write(arrayOfData[i].description);
document.write("<br><br>");
}
});
</script>