--headless
我这里有一个函数,可以在HTML表中显示相同的数据,但是不,我想创建另一个方法,可以在其中显示相同的数据,但是可以作为SQL数据,所以我想我想制作json全球数据。我正在考虑使用回调函数,但是我该怎么做。因为最后一个“ then”调用直接进入另一个函数buttonsend.addEventListener("click", function(){
let txt;
fetch("http://uinames.com/api/?amount=25®ion=denmark&gender=female").then(
function(response){
if(response.status >= 400){
console.log("ERROR more then 500 names requested");
alert("Don't request so many names");
}
return response.json();
}
).then(function(jsonData){
for(var i = 0; i < jsonData.length; ++i){
console.log(body);
console.log(jsonData.length);
console.log(jsonData[0].name);
txt += "<tr><td>" + jsonData[i].name + "</td>" + "<td>"+ jsonData[i].surname + "</td>" + "<td>" + jsonData[i].gender + "</td></tr>";
if(jsonData[i].name == undefined){
// jeg kan seriøst ikke se hvad det er
console.log("here is is at index " + jsonData[i])
}
}
document.getElementById("tblbody").innerHTML = txt;
//document.getElementById("json").innerHTML = JSON.stringify(jsonData);
console.log(2);
});
});