特定の属性値を持つオブジェクトの JavaScript 配列の検索
配列に特定の属性値を持つオブジェクトが含まれているかどうかを判断するには、配列の利用を検討してください。効率的な検索をサポートするメソッド。
1. some() メソッドの使用:
if (vendors.some((e) => e.Name === 'Magenic')) { // Object found with the matching attribute value }
some() は、配列内の少なくとも 1 つのオブジェクトが条件を満たすかどうかを確認します。
2. find() メソッドの使用:
if (vendors.find((e) => e.Name === 'Magenic')) { // Returns the first object with the matching attribute value }
find() は、見つかったオブジェクトを返します。一致するものが見つからない場合は未定義を返します。
3.オブジェクトの位置の決定:
const i = vendors.findIndex((e) => e.Name === 'Magenic'); if (i > -1) { // Position of the object with the matching attribute value }
findIndex() は、最初に一致したオブジェクトのインデックスを返します。見つからない場合は -1 を返します。
4.複数の一致するオブジェクトの検索:
if (vendors.filter((e) => e.Name === 'Magenic').length > 0) { // Array of all objects with the matching attribute value }
filter() は、条件を満たすすべてのオブジェクトを含む新しい配列を返します。
5.古いブラウザの互換性の処理:
矢印関数がサポートされていないブラウザの場合は、次を使用します:
if (vendors.filter(function(e) { return e.Name === 'Magenic'; }).length > 0) { // Array of all objects with the matching attribute value }
以上がJavaScript 配列内の特定の属性値を持つオブジェクトを効率的に検索するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。