目前只显示一个标题我想打印所有标题。
$.getJSON("http://...", function (data) {
$(".make-text").html(data.query.results.channel.item[0].title);
});
目前只显示一个标题我想打印所有标题。
$.getJSON("http://...", function (data) {
$(".make-text").html(data.query.results.channel.item[0].title);
});
您需要遍历这些项目。
$.getJSON("...", function (data) {
var titles = data.query.results.channel.item.map(function(item) {
return item.title;
});
$(".make-text").html(titles.join('<br>'));
});
Map 通常用于提取数组中对象的属性。