注释很详细,直接上代码
上一篇
新增内容:
1.传参步骤
2.传参接收解构步骤
源码:
index.wxml
<button type="primary" bind:tap="onclick" mark:index="{{0}}" mark:remb="{{1}}" class="But">点击
</button>
index.wxss
.But{display: flex;justify-content: center;align-items: center;margin-top: 50%;
}
index.js
Page({onclick(e){//解构一下const {index,remb}=e.markconsole.log(index)console.log(remb)}
})
效果演示: