如何将对象中数组的索引值添加到键

时间:2020-02-27 13:09:46

标签: javascript

我在变量info中有一个对象为:

0: {ProId: "Space", Name: "cake", Quantity: 1}
1: {ProId: "new", Name: "walk", Quantity: 1}

我正在尝试将每个索引的数量值更改为index+1

我试图将静态值设为:

  for (var key in obj){
    var value= obj[key];
    value['Quantity'] = 5;
  }

预期的O / p:

console.log(info)
    0: {ProId: "Space", Name: "cake", Quantity: 1}
    1: {ProId: "new", Name: "walk", Quantity: 2}
    2: {............................Quantity: 3}.....

但是我可以知道如何获得如上所述的Quantity

7 个答案:

答案 0 :(得分:3)

一些提示:

  • 如果需要简单的可迭代数据结构,请获取对象的数组instad。这样也可以控制迭代顺序。
  • 将数字用作数字值。如果以后需要(格式化的)字符串,请对其应用toString

要获取属性的新值,可以对给定数据进行突变

使用:

var array = [{ ProId: "Space", Name: "cake", Quantity: "1" }, { ProId: "new", Name: "walk", Quantity: "1" }];

array.forEach((object, i) => object.Quantity = i + 1);

console.log(array);

或者通过映射数组来获取新对象。

使用:

var array = [{ ProId: "Space", Name: "cake", Quantity: "1" }, { ProId: "new", Name: "walk", Quantity: "1" }],
    newArray = array.map((object, i) => ({ ...object, Quantity: i + 1 }));

console.log(newArray);

答案 1 :(得分:1)

forEachindex一起使用,并在特定索引Quantity +处添加index。并希望使用toString()格式的值来使用String方法。

var obj = [{ProId: "Space", Name: "cake", Quantity: "1"}, {ProId: "new", Name: "walk", Quantity: "1"}]
obj.forEach(function(el,idx){
  el.Quantity=(idx+parseInt(el.Quantity)).toString()
})
console.log(obj);

答案 2 :(得分:1)

您可以映射数组并返回一个新数组,但是将旧对象与具有更新的Quantity值的新对象合并,例如:

const data = [{ProId: "Space", Name: "cake", Quantity: "1"}, {ProId: "new", Name: "walk", Quantity: "1"}],
  updatedData = data.map((x, i)=> ({...x, Quantity: ++i}));
 
console.log(updatedData)
.as-console-wrapper { max-height: 100% !important; top: 0; }

更新对象键值的简单示例(在map()方法内完成)如下:

let obj = { a: 0, b: 0};
let newObj = { ...obj, a: 1 };

console.log( newObj )

答案 3 :(得分:0)

尝试使用:

let obj = {
 '0': {ProId: "Space", Name: "cake", Quantity: "1"},
 '1': {ProId: "new", Name: "walk", Quantity: "1"}
}
for(key in obj) {
   let qty = String(Number(obj[key]['Quantity'])+Number(key))
   obj[key]['Quantity'] = qrt;
}

答案 4 :(得分:0)

一种方法是map当前数组。

const info2 = info.map((product, index) => ({ ...product, Quantity: index + 1 }));

如果您希望Quantity作为字符串,请执行Quantity: index + 1 + ''Quantity: (index + 1).toString()。随便什么。

答案 5 :(得分:0)

您也可以尝试以下方法:

let info = {
  0: {
    ProId: "Space",
    Name: "cake",
    Quantity: "1"
  },
  1: {
    ProId: "new",
    Name: "walk",
    Quantity: "1"
  }
}

let index = 1;
Object.values(info).map(function(val) {
  val.Quantity = index;
  index++;
});

console.log(info);

答案 6 :(得分:0)

是在您仅使用对象而不设置为数组的情况下完成的。


let info = {
    0: { ProId: "Space", Name: "cake", Quantity: "1" },
    1: { ProId: "new", Name: "walk", Quantity: "2" },
    2: { ProId: "foo", Name: "bar", Quantity: "3" }
}

function incrementQuantify(obj) {
    let _newInfo = {};

    for (const key of Object.keys(obj)) {
        info[key].Quantity = parseInt(info[key].Quantity, 10) + 1;
        _newInfo[key] = info[key];
    }

    return _newInfo;
}
/*
{
  '0': { ProId: 'Space', Name: 'cake', Quantity: 2 },
  '1': { ProId: 'new', Name: 'walk', Quantity: 3 },
  '2': { ProId: 'foo', Name: 'bar', Quantity: 4 }
}
*/
console.log(incrementQuantify(info));

更短的方式:

let info = { 0: { ProId: "Space", Name: "cake", Quantity: "1" }, 1: { ProId: "new", Name: "walk", Quantity: "2" }, 2: { ProId: "foo", Name: "bar", Quantity: "3" } }
for (const key of Object.keys(info)) info[key].Quantity = parseInt(info[key].Quantity, 10) + 1;
console.log(info);

edit: I already made an way to work with arrays too!

let info = [
    { ProId: "Space", Name: "cake", Quantity: "1" },
    { ProId: "new", Name: "walk", Quantity: "2" },
    { ProId: "foo", Name: "bar", Quantity: "3" }
]

function incrementQuantify(obj) {
    let newObj = obj;
    newObj.Quantity = parseInt(obj.Quantity, 10) + 1;
    return newObj;
}
info.map(incrementQuantify);
/*
[
  { ProId: 'Space', Name: 'cake', Quantity: 2 },
  { ProId: 'new', Name: 'walk', Quantity: 3 },
  { ProId: 'foo', Name: 'bar', Quantity: 4 }
]
*/
console.log(info);

更短的方式:

let info = [ { ProId: "Space", Name: "cake", Quantity: "1" }, { ProId: "new", Name: "walk", Quantity: "2" }, { ProId: "foo", Name: "bar", Quantity: "3" } ]; info.map(o => o.Quantity = parseInt(o.Quantity, 10) + 1);
console.log(info);

希望有帮助!