码迷,mamicode.com
首页 > 编程语言 > 详细

vue 遍历数组和对象

时间:2018-12-29 15:15:23      阅读:1650      评论:0      收藏:0      [点我收藏+]

标签:数组   遍历数组   text   XML   ack   idt   json   alert   common   

一,遍历数组

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 遍历数组和对象

标签:数组   遍历数组   text   XML   ack   idt   json   alert   common   

原文地址:https://www.cnblogs.com/neo-java/p/10195908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!