gpt4 book ai didi

jquery 二维 JSON

转载 作者:行者123 更新时间:2023-12-01 06:02:35 24 4
gpt4 key购买 nike

如果我有这样的东西,以下工作:

  return Json(new { CustomerInfo = custinfo}); // defined in the controller

// below I define in my client script
jQuery.each(CustomerInfo, function () {
jQuery.each(this, function () {
// get field info from the object
});
});

但是,如果我这样传回 2 条数据

     return Json(new { CustomerInfo = custinfo, Message = msg });

请注意,custinfo 是一个列表,message 是一个字符串

在我的 .ajax() 中,我有以下内容从 JSON 检索信息

     function (data) {
alert(data.Message); // show up fine

alert(JSON.stringify(data.RepInfo));

jQuery.each(data.CustomorInfo, function () {
jQuery.each(this, function () {
// get data for each field . Show up as undefined here for my row content
});
});

}

如果我对上述代码上的 JSON.stringify 发出警报,我会得到以下信息:

[{"ID":"12","Date":"01/23/2012","City":"Clearwater","State":"FL"},{"ID":"00017-LV01-12","Date":"02/09/2012","City":"Peoria","State":"IL"},{"ID":"00010-LV01-12","Date":"06/22/2012","City":"Newport Beach","State":"CA"}]

当我查看 .each() 中的数据时,它正在为行内容拉出未定义的内容。我怎样才能让它显示行的内容。

最佳答案

你可以试试这个:

       $.each(data.CustomorInfo,function(i) {

$.each(this, function(key, value) {
alert(key +'='+ value);
});
});

});

现场演示:http://jsfiddle.net/PQcFx/18/

关于jquery 二维 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9707575/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com