export default {
data() {
return {
user: 'test'
}
},
methods: {
show:function(res){
uni.showModal({
title: "系统提示",
content: '确定?',
confirmText: "确定",
cancelText: "取消",
success: function(res) {
if (res.confirm) {
//这里访问不了this.user
}
}
});
}
}
Sunaice
- 发布:2021-08-18 23:52
- 更新:2021-08-19 09:04
- 阅读:1307
uni.showModal confirm 访问this失败
分类:uni-app
Sunaice (作者)
多谢!!
2021-08-19 15:19