直接看例子吧:

WXML:直接看Button,用“data-”(data-total)传值,后台如何获取,继续看下面JS代码。


 <view class="infothird">
<text class="vartime">{{item.KZSJ}}</text>
<button class='buttonpay' bindtap="payfor" data-total='{{item.ZJE}}'>付款 {{item.ZJE}}</button>
</view>

JS:值在这里 —— e.currentTarget.dataset

payfor: function (e) {
console.log(e.currentTarget.dataset.total);
var total = e.currentTarget.dataset.total
wx.navigateTo({
url: '../request-payment/request-payment?total=' + total
})
},

View也可以,或者其他控件这种方式都可以。有时间可以自己尝试。

05-11 11:35