- wx.exitMiniProgram()失效?
// 检查WiFi连接状态 checkWifiConnection: function() { var that = this; wx.getConnectedWifi({ success: function(res){ console.log("获取当前连接wifi的信息 getConnectedWifi=>",res) if (that.data.ssid == res.wifi.SSID) { console.log("SSID正确") wx.showToast({ title: '连接成功', icon: 'success', duration: 2000, success: function() { console.log("连接成功后的回调") wx.exitMiniProgram() } }); } else { wx.showToast({ title: '连接失败', icon: 'error', duration: 2000, success: function() { console.log("连接失败后的回调") wx.exitMiniProgram() console.log("连接失败后应当正确退出") } }); } }, 我这里的连接失败后,输出了日志,但是并没有执行退出 是为什么
2023-12-06 - wx-open-launch-weapp跳转小程序可以取消弹框么?
wx-open-launch-weapp跳转小程序可以取消弹框么?做到无感跳转小程序 不需要手动点击确认进行跳转 或者自动点击确认,总之让用户点击了我给出的按钮后,直接跳转小程序的目的
2023-12-04