// #ifdef H5
uni.showModal({
title: '提示',
content: '请确认反馈内容无误!',
success: (res)=> {
console.log(res);
if (res.confirm) {
_this.SubmitFeedBack()
}
},
fail: (err)=>{
console.log("报错信息", err);
}
});
// #endif
- 发布:2024-07-17 10:54
- 更新:2024-12-17 14:57
- 阅读:446
爱豆豆 - 办法总比困难多
你这是用在哪了?控制台也没报错吗?
你试试官方的demo能不能显示
https://hellouniapp.dcloud.net.cn/pages/API/modal/modal
cxm151254182 (作者)
这个
-
你发这个我也运行不了啊 复现不出来 我这边showToast showModal都可以正常显示
感觉是你代码的问题 你debugger一步一步排查一下
或者你把你页面代码先删掉 直保留showModal 看看能不能弹出来
如果可以正常弹出 那就说明是你其他地方代码影响到了
<template>
<view class="FeedBack">
<button class="Submit" @click="submit">提交</button>
</view>
</template>
<script>
export default {
data() {
return {};
},
methods:{
submit(){
uni.showModal({
title: '提示',
content: '请确认反馈内容无误!',
success: (res)=> {
console.log(res);
},
fail: (err)=>{
console.log("报错信息", err);
}
});
},
}
}
</script>
2024-07-17 11:46
<template>
<view class="FeedBack">
<button class="Submit" @click="submit">提交</button>
</view>
</template>
<script>
export default {
data() {
return {};
},
methods:{
submit(){
uni.showModal({
title: '提示',
content: '请确认反馈内容无误!',
success: (res)=> {
console.log(res);
},
fail: (err)=>{
console.log("报错信息", err);
}
});
},
}
}
</script>
cxm151254182 (作者)
H5,点击事件里边,用于二次确认,控制台没报错
2024-07-17 11:16
爱豆豆
回复 cxm151254182: 官方模版中的modal也打不开?
2024-07-17 11:21
cxm151254182 (作者)
回复 爱豆豆: 可以
2024-07-17 11:21
爱豆豆
回复 cxm151254182: 能发个复现的demo吗 我帮你看看
2024-07-17 11:22
cxm151254182 (作者)
回复 爱豆豆: 我这边H5端uni.showToast也弹不出来
2024-07-17 11:35