存取具有符合物件名稱的陣列元素
問題:
問題:var array = [ { name:"string 1", value:"this", other: "that" }, { name:"string 2", value:"this", other: "that" } ];
問題:
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');問題:您擁有數個群組包含未命名的對象,每個物件包含一個命名對象的陣列。您的目標是檢索「name」屬性等於「string 1」的物件。這是一個範例陣列:
console.log(obj); // Output: { name:"string 1", value:"this", other: "that" }找出陣列元素:要找出所需的對象,請使用find() 方法,指定檢查的回調函數如果物件的“name”屬性與“string 1”匹配:下面的console.log驗證檢索成功:
以上是如何根據屬性值在 JavaScript 陣列中尋找物件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!