您的位置:首页 > 技术中心 > 前端框架 >

vue.js如何循环数组

时间:2022-02-11 17:40

vue.js实现循环数组的方法:1、使用for遍历,代码为【for( var i in array):console.log(array[i], i)】;2、使用forEach方法,从头至尾遍历数组,为每个元素调用指定的函数。

【相关文章推荐:vue.js】

vue.js实现循环数组的方法:

1、vue遍历数组的方法:

var array = [1, 2, 3, 4]
//方法一:
for( var i in array):
    console.log(array[i], i)
 
//方法二:
array.forEach((v, i) => {
    console.log(v, i)
})

for循环和forEach是等价的,都是循环数组。

2、forEach()方法,从头至尾遍历数组,为每个元素调用指定的函数。

var a = [1,2,3,4,5];     
var sum = 0;             
a.forEach(function (value) {
    sum += value
})             
console.log(sum); //sum = 15

相关免费学习推荐:javascript(视频)

以上就是vue.js如何循环数组的详细内容,更多请关注gxlsystem.com其它相关文章!

本类排行

今日推荐

热门手游