我正在尝试更新数组中对象的字段。
我的对象(简化)看起来像这样:
{
"readableStructure": [
{
"ID": "1",
"Name": "Name 1",
"Description": "Adding, updating or removing users",
"IconName": "fas fa-users-cog"
},
{
"ID": "2",
"Name": "Name 2",
"Description": "Views overview",
"IconName": "fas fa-street-view"
},
{
"ID": "3",
"Name": "Name 3",
"Description": "Improvements to apps",
"IconName": "fas fa-broadcast-tower"
},
{
"ID": "4",
"Name": "Name 4",
"Description": "Managing badges",
"IconName": "fas fa-id-badge"
},
{
"ID": "5",
"Name": "Name 5",
"Description": "Art",
"IconName": "fas fa-hand-holding-heart"
}
]
}
我称之为:
prepareRepositories(this.props.primarySearchRepositories);
我可以有几个类似的回购,我循环通过它们。对于数组readableStructure
中的每个项目,我尝试使用以下代码添加名为QSString
的属性。
prepareRepositories(repositories) {
const repos = repositories.map((repo, index) => {
const searchableColumns = ['Name', 'Description'];
const newRepo = [];
newRepo[0] = {};
newRepo[0].readableStructure = [];
newRepo[0].readableStructure = repo[0].readableStructure.map((item) => {
item.QSString = this.getSearchableString(item, searchableColumns) || 'blaha';
return item;
});
return newRepo;
});
return repos;
}
getSearchableString = (base, searchableColumns) => {
let searchables = [];
Object.keys(base).forEach((key) => {
if ((searchableColumns.indexOf(key) > -1) && (base[key] !== null) && (typeof base[key] !== 'object')) {
searchables.push(base[key]);
}
});
const searchableString = searchables.join(' ');
return searchableString;
}
但是,当我这样做时,原始对象被修改,QSString
属性被设置为每个仓库的相同内容。
我做错了什么?
答案 0 :(得分:1)
Array.map不会更改原始数组,即创建新数组。但是,Array中的任何对象都会继续保持相同的引用,因此,即使在map函数内,对象的任何更改都会更新原始数组中的对象。
您需要为对象创建副本。
item = JSON.parse(JSON.stringify(item))
答案 1 :(得分:0)
使用它不会改变原始对象
JSON.parse(JSON.stringify(your_object))