각각 명명된 객체 배열을 포함하는 익명 객체 배열에 직면하면 특정 객체를 검색합니다. "이름"이 "문자열 1"과 같다는 것은 어려운 작업일 수 있습니다. 이 구조와 유사한 예시 배열이 제시됩니다:
var array = [ { name:"string 1", value:"this", other: "that" }, { name:"string 2", value:"this", other: "that" } ];
find() 메서드를 활용하면 배열을 효율적으로 탐색하여 원하는 개체를 찾을 수 있습니다.
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);
이 경우 obj 변수에는 찾은 개체가 포함됩니다.
{ 이름:"문자열 1", 값:"this", 기타: "that" }
위 내용은 JavaScript 개체 배열에서 특정 개체를 찾는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!