JosonData的数据遍历问题

发布于 2021-11-30 21:10:37 字数 1943 浏览 819 评论 2

我想在js中对这样返回的数据进行遍历{"firstPageNum":0,"firstResult":0,"items":[{"deleteFlag":false,"detailPic":"upload/14564559273171.18.jpg","financingKind":1,"financingName":"test","financingNum":"122121","isDisplay":0,"netWorths":[{"date":"2016-03-03 16:33:45","deleteFlag":false,"netWorth":1.004,"recNum":11,"updateTime":"2016-03-02 14:39:54"}],"titlePic":"upload/14564559273171.18.jpg","updateTime":"2016-03-02 14:39:54"}],"lastPageNum":0,"nextPageNum":0,"pageNum":1,"pageRows":1,"pageSize":15,"prePageNum":0,"totalPages":1,"totalRows":1}   主要是netWorths怎么遍历出来,想在网页显示的时候把netWorths里面的netWorth显示出来   js方法:function showFinancingProductList(type){

if(type != null){

$.ajax({

url: 'financingProduct-listFinancingProductByAjax.wx',

type: 'post',

dataType: 'json',

data: {"condition.financingProduct.financingKind":type},

success: function(jsonData){

if(jsonData.error == 1){

}else{

$('div.mainbox').empty();

var listHtml = [];

$.each(jsonData.items, function(i ,item){

if(i == 0){

listHtml.push('<a href="financingProduct-toFinancingProductDetail.wx?id=' + item.financingNum + '"><img src="' + item.titlePic + '" style="padding: 0 15px;width: 503px; height: 302px;"  alt=""/><h2 class="title">' + item.financingName + '</h2><h3 class="netWorth">'+item.netWorths+'</h3></a><ul class="products">');

}else{

listHtml.push('<a href="financingProduct-toFinancingProductDetail.wx?id=' + item.financingNum + '"><li class="clearfix"><h2 class="txt fl">' + item.financingName + '</h2><h3 class="txt f1">'+item.netWorths+'</h3><img src="' + item.titlePic + '" width="97" height="96"  alt="" class="fr"/> </li></a>')

}

});

$('div.mainbox').append(listHtml.join(''));

}

},

error: function(e){

}

});

}

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

百思不得你姐 2021-12-01 13:45:07

谢谢,已经解决

柳若烟 2021-12-01 04:19:42

items.t数组再遍历

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