일치하는 개체 이름으로 배열 요소에 액세스
문제:
배열을 소유하고 있습니다. 명명되지 않은 객체를 포함하며, 각각은 명명된 객체의 배열로 구성됩니다. 목표는 "이름" 속성이 "문자열 1"과 동일한 개체를 검색하는 것입니다. 예시적인 배열은 다음과 같습니다.
var array = [ { name:"string 1", value:"this", other: "that" }, { name:"string 2", value:"this", other: "that" } ];
배열 요소 찾기:
원하는 개체를 찾으려면 find() 메서드를 활용하고 확인하는 콜백 함수를 지정합니다. 객체의 "name" 속성이 "string 1"과 일치하는 경우:
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 아래에서는 성공적인 검색을 확인합니다.
console.log(obj); // Output: { name:"string 1", value:"this", other: "that" }
위 내용은 속성 값을 기반으로 JavaScript 배열에서 개체를 찾는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!