微信小程序返回上一个页面时是否可以加提示框,然后根据用户的选择判断是返回还是留在当前页面?

发布于 5 年前作者 fzhu8996 次浏览最后编辑 5 年前来自 issues

微信小程序是否可以实现从A页面跳转到B页面时,当用户返回上一页的时候,加一确认弹窗,提示用户是否保存并退出,然后根据用户的选择来判断是否返回上一页

3 回复
xcheng
xcheng1 楼5 年前

借楼,我想问下定时群发有些时间是灰的不能选为什么?

xia67
xia672 楼5 年前

onUnload,页面卸载,看看能不能用上

dongjing
dongjing3 楼7 个月前
wx.showModal({
  title: '提示',
  content: '是否需要保存',
  success (res) {
    if (res.confirm) {
      console.log('用户点击确定')
    } else if (res.cancel) {
      console.log('用户点击取消')
    }
  }
})

参考文档https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showModal.html