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 遍历数组和对象的主要内容,如果未能解决你的问题,请参考以下文章