繁体   English   中英

下划线不保留嵌套对象上的键

[英]underscore not retaining keys on nested object

我有一个看起来像这样的对象:

var ingredientsObject = {
    "Ingredients": [
        { "Section": "Ingredienser", "Name": "salt", "Value": 1, "Unit": "tsk" },
        { "Section": "Ingredienser", "Name": "olivolja", "Value": 1, "Unit": "msk" },
        { "Section": "Ingredienser", "Name": "lasagneplattor, (125 g) färska", "Value": 6, "Unit": "st" },
        { "Section": "Tomatsås", "Name": "salt", "Value": 0.5, "Unit": "tsk" },
        { "Section": "Tomatsås", "Name": "strösocker", "Value": 2, "Unit": "krm" }
        { "Section": "Béchamelsås", "Name": "salt", "Value": 0.5, "Unit": "tsk" },
        { "Section": "Béchamelsås", "Name": "smör", "Value": 2.5, "Unit": "msk" }
    ]
};

并且我正在尝试根据使用下划线指定的份数重新计算每种成分的价值。

我尝试使用mapObject( http://underscorejs.org/#mapObject ):

newIngredients = _.mapObject(ingredients.Ingredients, function (val, key) {
    return val.Value / modifier;
});

但是返回的对象看起来像这样:

Object {0: 0.3333333333333333, 1: 0.3333333333333333, 2: 2, 3: 0.3333333333333333, 4: 50, 5: 66.66666666666667, 6: 0.16666666666666666, 7: 0.6666666666666666, 8: 0.25, 9: 0.3333333333333333, 10: 0.3333333333333333, 11: 0.16666666666666666, 12: 0.8333333333333334, 13: 0.16666666666666666, 14: 0.8333333333333334, 15: 1.6666666666666667, 16: 0.6666666666666666}

而我真正想要的是仅更改了值的原始对象,如:

var ingredientsObject = {
    "Ingredients": [
        { "Section": "Ingredienser", "Name": "salt", "Value": 0.3333333333333333, "Unit": "tsk" },
        { "Section": "Ingredienser", "Name": "olivolja", "Value": 0.3333333333333333, "Unit": "msk" },
        { "Section": "Ingredienser", "Name": "lasagneplattor, (125 g) färska", "Value": 2, "Unit": "st" }
        // and so on...
    ]
};

我该如何实现?

尝试:

 newIngredients = _.map(ingredientsObject.Ingredients, function(item) {
    return { 
      Section: item.Section,
      Name: item.Name,
      Value: item.Value / modifier,
      Unit: item.Unit
    };
});

实际上ingredients.Ingredients是一个数组, _.mapObejct期望对象作为第一个参数。 您可以通过下划线方式执行此操作:

_.mapObject(ingredientsObject, function(val, key) {
    return _.map(val, function(ingredient) {
        return _.extend(
          {},
          ingredient,
          {
            Value: ingredient.Value / modifier
          }
        )
    })
})

好的,根据收到的评论和建议,我提出了以下解决方案:

newIngredients = _.each(ingredientsObject, function (list) {
    _.each(list, function (item) {
        item.Value = item.Value / modifier;
    });
});

这将修改值本身,而无需修改对象结构。

感谢@nnnnnn为我指出正确的方向。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM