当前位置:   article > 正文

在 JavaScript 中按属性值查找数组中的对象_js对象数组查找某个属性

js对象数组查找某个属性

数组引用值的有序列表,每个值称为索引指定的元素。JavaScript 数组可以保存混合类型的不同值,例如字符串、空值或布尔值,并且不需要数组的大小来指定它自动增长和动态的位置。

在考虑数组对象时,它将多个值存储在单个变量和具有相同数据类型的元素的固定大小的顺序集合中。使用数组构造函数指定单个数值参数时,用户应设置数组的初始长度。

允许的数组的最大长度为 4,294,967,295。尽管数组保存数据收集,但通常将数组视为类似类型的变量的集合更有帮助。

此外,JavaScript数组由不同的方法和属性组成,这些方法和属性将有助于程序高效执行而无需太多编码。

当通过属性值在数组中查找对象时,可以在 JavaScript 中使用不同的实现。

目录

1.使用方法按属性值查找数组中的对象find( )

2. filter()使用方法通过属性值在数组中查找对象

​编辑 3.for使用JavaScript循环按属性值在数组中查找对象

 4.for. ..in使用JavaScript循环按属性值在数组中查找对象


1.使用方法按属性值查找数组中的对象find( )

我们可以使用该方法通过其属性值在JavaScript中的对象数组中查找对象。在这里,该方法返回满足给定测试函数的第一个数组元素。find()find() 

任何不满足测试函数的值都将返回 。下面的代码指示如何在 JavaScript 对象数组中按 ID 查找对象。undefined 

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JavaScript Find Object In Array By Property Value</title>
  6. </head>
  7. <body>
  8. <script>
  9. var sampleArray = [
  10. {"id": 1, "animal": "Dog"},
  11. {"id": 2, "animal": "Cat"},
  12. {"id": 3, "animal": "Bird"},
  13. {"id": 4, "animal": "Fish"}
  14. ];
  15. //getting the object by its id
  16. var output = sampleArray.find(object => object.id === 3);
  17. //outputs the animal to be found
  18. document.write(output.animal);
  19. </script>
  20. </body>
  21. </html>

const关键字有时用作声明数组而不是var.

在这里,用户需要找到具有给定 id 的动物,并且作为输出,该动物Bird与用户提供的 id (3) 匹配。

输出:

 

如果需要,findIndex()可以在下面的代码中使用该方法来查找匹配对象在数组中的索引。

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Javascript Find Object In Array By Property Value</title>
  6. </head>
  7. <body>
  8. <script>
  9. var sampleArray = [
  10. {"id": 1, "animal": "Dog"},
  11. {"id": 2, "animal": "Cat"},
  12. {"id": 3, "animal": "Bird"},
  13. {"id": 4, "animal": "Fish"}
  14. ];
  15. //getting the index of the object that matches the id
  16. var objectIndex = sampleArray.findIndex(object => object.id === 3);
  17. //getting the output as the index and the animal to be found
  18. document.write(objectIndex + "<br>");
  19. document.write(sampleArray[objectIndex].animal);
  20. </script>
  21. </body>
  22. </html>

在这里,用户需要找到具有给定 id 和索引的动物。作为输出,找到的动物Bird的索引为 2,与用户提供的 id (3) 匹配。

输出:

2. filter()使用方法通过属性值在数组中查找对象

我们还可以利用该filter()方法创建一个新数组,其中填充了通过测试函数的元素。filter()如果元素为 null 并且不对原始数组进行任何更改,则该方法不会运行该函数。 

下面的代码说明了如何通过 id 在 JavaScript 对象数组中查找对象。 

  1. var animals = [
  2. {animalName: "Dog", ability: "Bark"},
  3. {animalName: "Cat", ability: "Meow"},
  4. {animalName: "Bird", ability: "Fly"},
  5. {animalName: "Fish", ability: "Swim"}
  6. ];
  7. var animalAbility = animals.filter(function(animal) {
  8. return animal.ability == "Bark";
  9. });
  10. console.log(animalAbility);

在这里,用户可以通过输入ability从数组中获取所需的相关信息来获得所需的输出。

输出

 3.for使用JavaScript循环按属性值在数组中查找对象

首先,声明一个对象数组,每个对象都有一个 id 和 name 属性。当涉及到程序的执行时,会创建一个带有数组、对象键和值的函数。

for循环用于遍历数组中的对象。每个对象都使用分配的键和使用相等运算符(===)的值进行检查。

如果匹配,则程序返回一个对象。否则,它将null作为输出返回。

下面的代码说明了如何通过键在 JavaScript 对象数组中查找对象。此代码不使用任何数组方法来查找数组对象。

  1. let animals = [
  2. {"id": 1, "animal": "Dog"},
  3. {"id": 2, "animal": "Cat"},
  4. {"id": 3, "animal": "Bird"},
  5. {"id": 4, "animal": "Fish"}
  6. ]
  7. //declaration of the function and iteration through the objects
  8. function getObjectByKey(array, key, value) {
  9. for (var c = 0; c < array.length; c++) {
  10. if (array[c][key] === value) {
  11. return array[c];
  12. }
  13. }
  14. return null;
  15. }
  16. console.log(getObjectByKey(animals,'animal','Fish'))

用户可以通过提供相关的密钥来获得所需的输出。

输出:

 4.for. ..in使用JavaScript循环按属性值在数组中查找对象

如有必要,for...in循环可用于按属性值查找数组对象,因为它遍历对象的所有属性值。

下面的代码显示了如何使用for...in循环来查找对象。

  1. var animals = [
  2. {"id": 1, "animal": "Dog"},
  3. {"id": 2, "animal": "Cat"},
  4. {"id": 3, "animal": "Bird"},
  5. {"id": 4, "animal": "Fish"}
  6. ];
  7. for (const c in animals) {
  8. if (animals[c].id == 2) {
  9. console.log(animals[c]);
  10. }
  11. }

在这里,用户可以根据需要提供相关的id来获取输出。

输出:

 随着进一步的实现,还有其他方法可以通过属性值从对象数组中获取 JavaScript 对象。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/113399
推荐阅读
相关标签
  

闽ICP备14008679号