当前位置:   article > 正文

js中遍历对象数组并获取对象相应的属性值_js取数组对象中某一个属性值

js取数组对象中某一个属性值

JavaScript中遍历对象数组的方法有很多种。以下是常见的四种常见的方法:for​循环,for...of​循环,forEach​方法和map​方法,在遍历的同时,通过访问对象的属性来获取相应的值。

  1. for​循环:

    const objArray = [
      { id: 1, name: 'Alice' },
      { id: 2, name: 'Bob' },
      { id: 3, name: 'Charlie' },
    ];
    
    for (let i = 0; i < objArray.length; i++) {
      const obj = objArray[i];
      console.log(obj.id, obj.name);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  2. for...of​循环:

    const objArray = [
      { id: 1, name: 'Alice' },
      { id: 2, name: 'Bob' },
      { id: 3, name: 'Charlie' },
    ];
    
    for (const obj of objArray) {
      console.log(obj.id, obj.name);
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  3. forEach​方法:

    const objArray = [
      { id: 1, name: 'Alice' },
      { id: 2, name: 'Bob' },
      { id: 3, name: 'Charlie' },
    ];
    
    objArray.forEach((obj) => {
      console.log(obj.id, obj.name);
    });
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
  4. map​方法(通常用于创建一个新数组,但也可以用于遍历):

    const objArray = [
      { id: 1, name: 'Alice' },
      { id: 2, name: 'Bob' },
      { id: 3, name: 'Charlie' },
    ];
    
    objArray.map((obj) => {
      console.log(obj.id, obj.name);
      return obj;
    });
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

以上方法都可以实现在遍历对象数组的同时,提取对象中的属性值。‍

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

闽ICP备14008679号