当前位置 : 主页 > 网络编程 > PHP >

如何获取showActionSheet中的值 - 微信小程序

来源:互联网 收集:自由互联 发布时间:2023-09-07
view class="container" button type="primary" bindtap="click"按钮/button view{{value}} /view /view Page({ /** * 页面的初始数据 */ data: { value: "" }, click: function() { var ithis = this; var list = ['A', 'B', 'C']; console.log(ith


<view class="container">
<button type="primary" bindtap="click">按钮</button>

<view>{{value}} </view>
</view>
Page({

/**
* 页面的初始数据
*/
data: {
value: ""
},

click: function() {
var ithis = this;
var list = ['A', 'B', 'C'];
console.log(ithis)
wx.showActionSheet({
itemList: list,
success(res) {
console.log(res.tapIndex)
console.log(res)
console.log(list)
ithis.setData({
value: list[res.tapIndex]
})
},
fail(res) {
console.log(res.errMsg)
}
})
}
})

如何获取showActionSheet中的值 - 微信小程序_wx


如何获取showActionSheet中的值 - 微信小程序_wx_02


如何获取showActionSheet中的值 - 微信小程序_数据_03


网友评论