jQuery .map() 到多维对象
我正在尝试从 .map() 获取多维对象输出,最终格式我想要得到类似 { "key" : { key : value, key : value }, "key" { key :值,键:值},...}
。
这是一些代码 http://pastie.org/1524749
自从我发送以来,我已经尝试过不同的方式但没有成功通过ajax,我在PHP中得到数组未定义
var arrData = $('#orDetColProducts .lineBottomRow').map(function(){
intRef = $(this).find('._ref').text();
intPrice = $(this).find('._intPrice').text();
intQuantity = $(this).find('.existStock').val();
if (intRef && intQuantity) {
return '{' + intRef + ' : { quantity : ' + intQuantity + ', price : ' + intPrice + '}' + '}';
}
});
I'm trying to get a multidimensional object output from .map(), the final format I would like to get something like { "key" : { key : value, key : value }, "key" { key : value, key : value }, ... }
.
Here's some code http://pastie.org/1524749
I've tried in different ways without success since when I send it through ajax, I get array undefined in PHP
var arrData = $('#orDetColProducts .lineBottomRow').map(function(){
intRef = $(this).find('._ref').text();
intPrice = $(this).find('._intPrice').text();
intQuantity = $(this).find('.existStock').val();
if (intRef && intQuantity) {
return '{' + intRef + ' : { quantity : ' + intQuantity + ', price : ' + intPrice + '}' + '}';
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
Try this: