//1.携带参数跳转到另一个页面<view bind:tap="handleClick" data-id="{{item.id}}"></view>handleClick(event){var {id} = event.currentTarget.datasetwx.navigateTo({url: '/pages/mvPlay/mvPlay?id='+id,})}//2.在跳转页面接收参数Tips: 在跳转页面的onLoad函数中接收参数onLoad: function (options) {console.log(options)},
