- 使用webview打开h5页面打开手机短信体验版丢失了里面的链接打开调试而不会?
[图片][图片]第一张图是调试状态下运行,里面的链接内容没有丢失,第二张是关闭调试状态下运行,里面的链接内容丢失了。这是什么原因?
2022-02-07 - 体验版在一个请求里不显示消息提示框,在调试模式下可以跟真机调试下可以,为什么?
wx.request({ url: 'http://utf8.api.smschinese.cn/?Uid='+util.Uid+'&Key='+util.Key+'&smsMob='+that.data.phone+'&smsText=【晨鸟技能大赛】邀请您参加'+that.data.detail.competionitem.name+'请点击地址进行评委注册:'+that.data.url, method:"GET", success:function(res){ res1=res; console.log(res); switch(res.data){ case -3: Dialog.alert({ message: '短信余额不足,请提交故障给管理员', }).then(() => { // on close }); break; case -41: Dialog.alert({ message: '手机号码为空', }).then(() => { // on close }); break; case -4: Dialog.alert({ message: '手机号格式不正确', }).then(() => { // on close }); break; default: Dialog.alert({ message: '已发送短信通知', }).then(() => { // on close }); break; } } })
2021-09-01