[JavaScript] 纯文本查看 复制代码
Page({
/**
* 页面的初始数据
*/
data: {
},
//展示吐司
showToast: function () {
wx.showToast({
title: '我是吐司',
duration: 2000,
icon: "loading"
})
},
//展示等待框,请求数据完成后需要手动调用wx.hideLoading()隐藏
showLoading: function () {
wx.showLoading({
title: '我是loading',
})
setTimeout(function () {
wx.hideLoading()
}, 2000);
},
//展示对话框
showModal: function () {
wx.showModal({
title: '提示',
content: '这是一个对话框',
success: function (res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
}
})
},
//显示操作菜单
showActionSheet: function () {
wx.showActionSheet({
itemList: ['A', 'B', 'C'],
//用户点击的按钮,从上到下的顺序,从0开始
success: function (res) {
console.log("success" + res.tapIndex)
},
//点击取消会走fail
fail: function (res) {
console.log("fail" + res.errMsg)
}
})
}
})