本篇文章给大家带来的内容是关于js中遍历对象(5种)和遍历数组(6种)的方法总结,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

编程入门 行业动态 更新时间:2024-10-23 13:37:06

本篇文章给大家带来的内容是关于js中<a href=https://www.elefans.com/category/jswz/34/1771029.html style=遍历对象(5种)和遍历数组(6种)的方法总结,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。"/>

本篇文章给大家带来的内容是关于js中遍历对象(5种)和遍历数组(6种)的方法总结,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

一、遍历对象方法

1.for...in
遍历输出的是对象自身的属性以及原型链上可枚举的属性(不含Symbol属性),原型链上的属性最后输出说明先遍历的是自身的可枚举属性,后遍历原型链上的

1

2

3

4

5

6

7

8

9

10

11

12

13

eg:

var obj = { 'name': "yayaya", 'age': '12', 'sex': 'female' };

Object.prototype.pro1 = function() {};//在原型链上添加属性

Object.defineProperty(obj, 'country', {

  Enumerable: true //可枚举

});

Object.defineProperty(obj, 'nation', {

  Enumerable: false //不可枚举

})

obj.contry = 'china';

for (var index in obj) {

  console.log('key=', index, 'value=', obj[index])

}

输出结果:

key = name value = yayaya

key= age value = 12

前端(vue)入门到精通课程:进入学习

2.Object.keys()
遍历对象返回的是一个包含对象自身可枚举属性的数组(不含Symbol属性).

1

2

3

4

5

6

7

8

9

10

11

12

13

14

eg:

var obj = { 'name': "yayaya", 'age': '12', 'sex': 'female' };

Object.prototype.pro1 = function() {}

Object.defineProperty(obj, 'country', {

  Enumerable: true,

  value: 'ccc'

});

Object.defineProperty(obj, 'nation', {

  Enumerable: false //不可枚举

})

obj.contry = 'china';

Object.keys(obj).forEach(function(index) {

  console.log(index, obj[index])

});

输出结果:

name yayaya

age 12

3.Objcet.getOwnPropertyNames()
输出对象自身的可枚举和不可枚举属性的数组,不输出原型链上的属性

1

2

3

4

5

6

7

8

9

10

11

12

13

14

eg:

var obj = { 'name': "yayaya", 'age': '12', 'sex': 'female' };

Object.prototype.pro1 = function() {}

Object.defineProperty(obj, 'country', {

  Enumerable: true,

  value: 'ccc'

});

Object.defineProperty(obj, 'nation', {

  Enumerable: false //不可枚举

})

obj.contry = 'china';

Object.getOwnPropertyNames(obj).forEach(function(index) {

  console.log(index, obj[index])

});

输出结果:

name yayaya

age 12

4.Reflect.ownKeys()
返回对象自身的所有属性,不管属性名是Symbol或字符串,也不管是否可枚举.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

eg:

var obj = { 'name': "yayaya", 'age': '12', 'sex': 'female' };

Object.prototype.pro1 = function() {}

Object.defineProperty(obj, 'country', {

  Enumerable: true,

  value: 'ccc'

});

Object.defineProperty(obj, 'nation', {

  Enumerable: false //不可枚举

})

obj.contry = 'china';

Reflect.ownKeys(obj).forEach(function(index) {

  console.log(index, obj[index])

});

返回结果:

name yayaya

age 12

5. _.keys
用underscore插件的遍历方法只可以遍历出对象自身的可枚举属性

1

2

3

4

5

6

7

8

9

10

11

12

eg:

var obj = { 'name': "yayaya", 'age': '12', 'sex': 'female' };

Object.prototype.pro1 = function() {}

Object.defineProperty(obj, 'country', {

  Enumerable: true,

  value: 'ccc'

});

Object.defineProperty(obj, 'nation', {

  Enumerable: false //不可枚举

})

obj.contry = 'china';

console.log(_.keys(obj));

输出结果:

['name','age','sex']

二.遍历数组方法

1.forEach

1

2

3

4

5

eg:

var arr = ['a', 'b', 'c', 'd'];

arr.forEach(function(value, index) {

  console.log('value=', value, 'index=', index);

})

输出结果:

value = a index = 0

value = b index = 1

value = c index = 2

2.map
可以对遍历的每一项做相应的处理,返回每次函数调用的结果组成的数组

1

2

3

4

5

eg:

var arr = ['a', 'b', 'c', 'd'];

arr.map(function(item, index, array) {

  console.log(item, index);

})

输出结果:

a 1

b 2

c 3

3.for循环遍历

1

2

3

4

5

eg:

var arr = ['a', 'b', 'c', 'd'];

for (var i = 0; i < arr.length; i++) {

  console.log(i, arr[i])

}

输出结果:

4.for...in

1

2

3

4

5

eg:

var arr = ['a', 'b', 'c', 'd'];

for (var i in arr) {

  console.log('index:', i, 'value:', arr[i])

}

输出结果:

index:0 value:a

index:1 value:b

5.for...of(es6)
只遍历出value,不能遍历出下标,可遍历出Symbol数据类型的属性,此方法作为遍历所有数据结构的统一的方法

1

2

3

4

5

eg:

var arr = ['a', 'b', 'c', 'd'];

for (var value of arr) {

  console.log('value', value)

}

输出结果:

value a

value b

value c

6.利用underscore插件

1

2

3

4

5

6

7

eg:

var arr = ['a', 'b', 'c', 'd'];

var _ = require('underscore');

_.each(arr, function(value, index, arr) {

  console.log(value, index, arr)

})

输出结果:

a 0 ['a','b','c','d']

b 1 ['a','b','c','d']

c 2 ['a','b','c','d']

更多推荐

本篇文章给大家带来的内容是关于js中遍历对象(5种)和遍历数组(6种)的方法总结,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

本文发布于:2024-03-23 01:30:03,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1738874.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:遍历   对你   有一定   给大家   数组

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!