我一直在使用web api,一切都很好。现在我正在尝试使用Marvel的api,我有一个错误。这是我用于所有web apis的代码
function getPosts(){
fetch('http://gateway.marvel.com/v1/public/comics?ts=1&apikey=b5dd158dd0e856443db7fb726fbc6bc9&hash=80182fcb24c6426319114b9e34eafed6')
.then((res) => res.json())
.then((info) => {
let output = '<h2 class="mb-4"> Posts </h2>';
info.forEach(function(post){
output += `
<div class="card card-body mb-3">
<h3>${post.data.results.title}</h3>
</div>
`;
});
document.getElementById('output').innerHTML = output;
})
}
您需要访问结果的实际数组。 您正在将forEach应用于对象,forEach仅对数组mdn docs进行操作 实际的数组在info.data.results中
例如,显示标题:
function getPosts(){
fetch('//gateway.marvel.com/v1/public/comics?ts=1&apikey=b5dd158dd0e856443db7fb726fbc6bc9&hash=80182fcb24c6426319114b9e34eafed6')
.then((res) => res.json())
.then((info) => {
info.data['results'].forEach( data => {
console.log(data.title);
});
})
}
你可以在这里尝试这个代码,你可以得到你的标题,你可以在任何html标签中随附你想要的这个标题
$.get('http://gateway.marvel.com/v1/public/comics?ts=1&apikey=b5dd158dd0e856443db7fb726fbc6bc9&hash=80182fcb24c6426319114b9e34eafed6',function(dataObject){
var results=dataObject;
var data=results.data.results;
$.each(data,function(index,item){
var title=item.title;
console.log(title);
});
});