我正在使用以下函数向每个数组对象添加索引,但是当我检查console.log时,所有id都获得相同的值
var foo = [...this.props.articleList];
foo.forEach(function(row, index) {
row.id = index+1;
});
console.log(foo);
我想要这样的东西=>
[{…},{…},{…},{…},id:1],[{…},{…}, {…},{…},id:2],[{…},{…},{…},{…},id:3]
但它正在返回
[{…},{…},{…},{…},id:3],[{…},{…},{…},{…},id: 3],[{…},{…},{…},{…},id:3]
答案 0 :(得分:1)
您可以如下使用array.map
var foo = [...this.props.articleList];
foo = foo.map(function(row, index) {
row.id = index+1
return row;
});
console.log(foo);
答案 1 :(得分:1)
尝试一下。以下两种解决方案都可以
const foo = [...this.props.articleList];
const articles = foo.map((row, index) => (
row.id = index+1;
));
console.log(articles);
或
const foo = [...this.props.articleList];
const articles = foo.map((row, index) => {
return row.id = index+1;
});
console.log(articles);
答案 2 :(得分:1)
问题似乎源于处理foo
并随后以变异方式处理row.id
。
解决方案是利用通常称为克隆的策略。
spread syntax和Array.prototype.map()之类的工具通常对此有用。
请参见下面的实际示例。
case types.SOMETHING:
return {...state, List: [...state.List, action.payload].map((row, index) => ({...row, index}))}