JSON 只返回一条记录
当我这样做时有数百条记录,但我无法添加任何其他信息:
function(data){
$.each(data.products, function(i,item){
$("<img>").attr("src", item.imageUrl).appendTo("#pear");
if ( i == 100 ) return false;
});
});
但当我使用它时,我只得到一条记录:
function(data){
$.each(data.products, function(i,item){
$("#images").html("<li><a href='"+item.pUrl+"'><img src='"+item.iUrl+"'></a>"+"<br>"+item.Name+"<br>"+"$"+item.salePrice+"</li>");
if ( i == 100 ) return false;
});
});
Can somene please向我解释我做错了什么 - 对此非常陌生。谢谢
There are hundreds of records when I do this but I can't add any other info:
function(data){
$.each(data.products, function(i,item){
$("<img>").attr("src", item.imageUrl).appendTo("#pear");
if ( i == 100 ) return false;
});
});
But when I use this I only get one record:
function(data){
$.each(data.products, function(i,item){
$("#images").html("<li><a href='"+item.pUrl+"'><img src='"+item.iUrl+"'></a>"+"<br>"+item.Name+"<br>"+"$"+item.salePrice+"</li>");
if ( i == 100 ) return false;
});
});
Can somene please explainto me what I am doing wrong - very new to this. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在底部代码替换了
#images
中的所有代码我认为这会更好
Right now the bottom code replaces all code in
#images
I think this would be better