jQuery .map() 到多维对象

发布于 2024-10-15 13:12:43 字数 650 浏览 3 评论 0原文

我正在尝试从 .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 技术交流群。

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

发布评论

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

评论(1

人│生佛魔见 2024-10-22 13:12:43

试试这个:

var arrData = $('#orDetColProducts .lineBottomRow').map(function() {
    var intRef = $(this).find('._ref').text();    
    var intPrice = $(this).find('._intPrice').text();
    var intQuantity = $(this).find('.existStock').val();
    var tmp = {};
    if (intRef && intQuantity) {
        tmp.intRef = { quantity: intQuantity, price: intPrice };
    }
    return tmp;
}); // chain .get() to convert to array

Try this:

var arrData = $('#orDetColProducts .lineBottomRow').map(function() {
    var intRef = $(this).find('._ref').text();    
    var intPrice = $(this).find('._intPrice').text();
    var intQuantity = $(this).find('.existStock').val();
    var tmp = {};
    if (intRef && intQuantity) {
        tmp.intRef = { quantity: intQuantity, price: intPrice };
    }
    return tmp;
}); // chain .get() to convert to array
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文