如解决啊
uniapp开发的小程序怎么获取到当前位置信息?为什么我的获取不到?{“errno”: 103, “errMsg”: “getLocation:fail fail:require permission desc”}{“errno”: 103, “errMsg”: “getLocation:fail fail:require permission desc”}[图片][图片]
2023-10-06这样实现不了返回两层页面
uniapp开发的微信小程序打开pdf之后如何返回小程序两层页面?下面方法实现不了返回两层页面[图片]
2023-08-02<script> export default { data() { return { oldpwd:'', xpw:'', newpwd:'', showZpw: false, }; }, methods:{ onChange(key,event){ this[key]=event.detail }, submit(){ if (!this.oldpwd || !this.xpw || !this.newpwd) { uni.showToast({ title: '输入不能为空', icon: 'none', duration: 2000 }); return; } if (this.xpw !== this.newpwd) { uni.showToast({ title: '新密码和确认密码不一致', icon: 'none', duration: 2000 }); return; } uni.request({ url:'https://weixin.sskh.net/api/password/modify', header: { "content-type": "application/x-www-form-urlencoded", }, data: { oldpwd: this.oldpwd, newpwd: this.newpwd, }, success(res){ console.log(res); uni.showModal({ title: '提示', content: '修改密码成功', success(res) { if (res==0) { console.log('用户点击了确定按钮'); uni.showToast({ title:'修改密码成功', icon:'none', }) uni.reLaunch({ url:'/pages/mine/mine', }); } else if (res.cancel) { console.log('用户点击了取消按钮'); }else{ } } }); }, fail(error) { console.log(error); uni.showToast({ title:'服务器错误', icon:'none' }) } }) }, back(){ uni.reLaunch({ url:'/pages/mine/mine' }) }, }, } </script>
小程序登录之后,后台没有保存小程序的登录状态?小程序登录之后,后台没有保存小程序的登录状态,登录之后本应该是登录状态,但是在修改密码时就不是登录使用session保存的用户登录状态使用session保存的用户登录状态
2023-07-08