我正在尝试循环我的向量。但似乎它只是通过它。
如您所见,当我尝试通过使用data.title来操纵DOM时,我就有了我的API网址。
"use strict";
window.addEventListener('load', loadData); //Onload go to function loadData
let container = document.querySelector(".container")
function loadData() {
window.fetch('https://newsapi.org/v2/top-headlines?country=US&apiKey=09a07c4fc0d9457696f8d3cc6b37baf5').then(function(response) {
return response.json()
}).then(function(data) {
for (let i = 0; i < data.length; i++) {
console.log(data[i]);
}
});
}
当我不确定它时,这就是一个例子:
let title = document.createElement('p');
title.className = 'card-text';
title.innerHTML = '<b>Title:</b> ' + data.title;
title.appendChild(title);