作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个嵌套属性,我正在尝试找到一种干净的方法来替换它,而不使用一堆切片和拼接(目前我正在使用的东西,我正在寻找带有或不带有lodash的更干净的解决方案)
仅将 reproducible_counter: 0
更新为 reproducible_counter: 1
id:0
和 urls.id 85
data = [{
id: 0,
groupID: "65da6a",
urls: [{
id: 85,
searchedurl: "https://www.yahoo.com",
errorurl: "https://www.yahoo.com/error505",
count: 1,
reproducible: false,
reproducible_counter: 0
},
{
id: 84,
searchedurl: "https://www.gmail.com",
errorurl: "https://www.gmail.com/error404",
count: 1,
reproducible: false,
reproducible_counter: 0
}
]
},
{
id: 1
groupID: "d4127e",
urls: [{
id: 3,
searchedurl: "agwscc",
errorurl: "xyqa",
count: 1,
reproducible: false,
reproducible_counter: 0,
resolved: null
}]
}
];
最佳答案
这是一个解决方案。
for(var index=0; index< data.length; index++){
data[index].urls.filter(u => u.id === 85)[0].reproducible_counter++;
}
关于javascript - 如何在对象数组中显式设置新属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51869157/
我是一名优秀的程序员,十分优秀!