JSON 只返回一条记录

发布于 2024-11-14 07:02:15 字数 708 浏览 0 评论 0原文

当我这样做时有数百条记录,但我无法添加任何其他信息:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拧巴小姐 2024-11-21 07:02:15

现在底部代码替换了 #images 中的所有代码

我认为这会更好

function(data){   

   $.each(data.products, function(i,item){   

     $("#images").append("<li><a href='"+item.pUrl+"'><img src='"+item.iUrl+"'></a>"+"<br>"+item.Name+"<br>"+"$"+item.salePrice+"</li>");  

     if ( i == 100 ) return false;   

   });   

 }); 

Right now the bottom code replaces all code in #images

I think this would be better

function(data){   

   $.each(data.products, function(i,item){   

     $("#images").append("<li><a href='"+item.pUrl+"'><img src='"+item.iUrl+"'></a>"+"<br>"+item.Name+"<br>"+"$"+item.salePrice+"</li>");  

     if ( i == 100 ) return false;   

   });   

 }); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文