I am trying to access an super hero api and for some of the data it keeps saying that the data is undefined.(我正在尝试访问超级英雄api,对于某些数据,它一直在说数据未定义。)
var html = "";
$.each(data.results,function(i,results){
html += "<li> first appearance: " + results.biography.first-appearance +"</li>";
// it is not showing anything with a "-" in but the rest are working fine
})
$("#Results").html(html);
ask by Super_Fly translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…