1、多层循环时内层循环需要自定义Item 和Index
<view wx:for="{{list}}" class="list_wrap" wx:key="index">
<!--默认 item 循环单个数据 -->
<view class="title">{{item.name}}</view>
<view wx:for="{{item.tags}}" wx:for-item="tagItem" wx:for-index="tagIndex">
{{tagItem}}
</view>
</view>
2、事件点击传递参数的写法
<button bindtap="handlClick" data-id="2">点击触发</button>
handlClick(event){
console.log("我被点击了", event)
console.log(event.currentTarget.dataset.id)
}
3、几个不同的跳转
wx.switchTab 只能跳转到Tab页面
wx.reLaunch 跳转任意页面
wx.redirectTo 跳转非tab页面
wx.navigateTo 跳转非tab页面 不关闭原页面 做多10级别
wx.navigateBack 跳转上一页面
https://developers.weixin.qq.com/miniprogram/dev/api/route/wx.switchTab.html