使用 JavaScript 在对象数组中查找值
与之前的查询类似,此查询呈现了一个独特的场景。我们有一个未命名对象数组,其中包含命名对象数组。要求是找到“name”属性设置为“string 1”的对象。作为参考,请考虑以下数组:
var array = [ { name:"string 1", value:"this", other: "that" }, { name:"string 2", value:"this", other: "that" } ];
修改找到的对象:
找到所需对象后,需要将其替换为更新版本。要在 JavaScript 中完成此操作:
let arr = [ { name:"string 1", value:"this", other: "that" }, { name:"string 2", value:"this", other: "that" } ]; let obj = arr.find(o => o.name === 'string 1'); console.log(obj);
此代码片段将查找“name”属性设置为的对象“string 1”并将其记录到控制台。
找到对象后,您可以将其替换为修改后的版本:
arr[arr.indexOf(obj)] = { name:"string 1", value:"updated value", other: "that" };
此代码使用以下命令查找已定位对象在数组中的索引indexOf 并将其替换为修改后的对象。
以上是如何根据特定属性值查找并替换 JavaScript 数组中的对象?的详细内容。更多信息请关注PHP中文网其他相关文章!