我得到的数据是未定义的,我想我不能在数组中['productId'],但我想我需要在json中这个结构,我尝试了一些变体,但它从来没有,我需要什么我只想通过 Ajax 发送一个 JSON。
jQuery(':checked').each(function(i){
data[i]['productId'] = jQuery(this).parent().find('.productId').val();
jQuery(this).parent().find('.attrGrp').each(function(j){
data[i]['attrGrps'][j]['uid'] = jQuery(this).find('.active').attr('id');
data[i]['attrGrps'][j]['amount'] = jQuery(this).parent().find('.amount').val();
});
});
jQuery.post(newSession, {json: data.serializeArray()});
有没有更好的方法?或者我怎样才能让它工作?帮助赞赏;/
您需要在使用
数组和对象之前对其进行初始化。字符串索引只能用于对象。试试这个:
var data = [];
jQuery(':checked').each(function(i)
{
data[i] = {};
data[i].productId = jQuery(this).parent().find('.productId').val();
data[i].attrGrps = [];
jQuery(this).parent().find('.attrGrp').each(function(j)
{
data[i].attrGrps[j] = {};
data[i].attrGrps[j].uid = jQuery(this).find('.active').attr('id');
data[i].attrGrps[j].amount = jQuery(this).parent().find('.amount').val();
});
});
或者,您可以使用jQuery().serialize,在表单中发布所有内容并将其整理到服务器上。