vue 遍历数组和对象

Posted neo-java

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 遍历数组和对象相关的知识,希望对你有一定的参考价值。

一,遍历数组

wxml布局

<view class=‘common_tags_item‘ wx:for="{{filter_grade_list}}" wx:key="this" bindtap=‘selectFilterGrade‘ data-hi="{{index}}"  style="background:{{filter_grade===index ? ‘#FFF5F5‘: ‘#F2F2F2‘}};border-width:{{filter_grade===index?1:0}}px;">
       <text>{{item.text}}</text>
</view>

js代码

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

二,遍历对象(字典)

wxml布局

<view class=‘functional-module-item‘ wx:for="{{commonMenu}}" wx:key="this" bindtap=‘myCommonClick‘ data-hi="{{item.url}}"
       <text>{{item.text}}</text>
</view>

js代码

for(var p in myJson){ //遍历json对象的每个key/value对,p为key
   alert(p + " " + myJson[p]);
}

以上是关于vue 遍历数组和对象的主要内容,如果未能解决你的问题,请参考以下文章

vue遍历数组和对象的方法以及他们之间的区别

vue遍历对象 并把对象中某个数据相加

vue 遍历数组和对象

循环遍历 JavaScript 对象数组并删除值

angularjs怎么遍历每个对象的属性的值

如何遍历一个JS对象中的所有属性