foreach循环json数组
2019-04-10 本文已影响0人
Double杨_
定义一组数据
var obj = [{
name: 'a',
age: 1
}, {
name: 'b',
age: 2
}, {
name: 'c',
age: 3
}];
传入一个参数
obj.forEach(function(element){
console.log(element)
})
image.png
传入一个参数时,foreach循环json数组中的对象
传入两个参数
obj.forEach(function(element, index) {
console.log(element)
console.log(index)
})
image.png
传入两个参数时,第一个参数是json数组中的对象,第二个参数是对应的index值