- 公众号尝试打开体验版微信小程序,但每次打开的都是正式版本?
// 尝试打开微信小程序 generateScheme({ path: '/pages/contactList/contactList', query: 'phone=' + userInfo.mobile, envVersion: 'trial', // 正式版为"release",体验版为"trial",开发版为"develop" }).then(res => { if (res.code == 0) { window.location.href = res.data } else { uni.showToast({ title: res.msg, icon: 'none' }) } }).catch(err => { uni.showToast({ title: err.msg, icon: 'none' }) })
07-04 - 启动VOIP视频的通话报错?
[图片][图片]
06-16 - 为什么我引入这个插件后,就提示这个报错,不引入就不会报错?
[图片]
06-08 - VoIP 通话插件 已在后台审核通过,但在小程序app.json引入报错,报插件未审核?
[图片]
06-08 - 在登录页获取code, redirect_uri 配置的连接 导致项目来回跳转,首页登录页来回跳转
// 检查URL中是否包含code参数 checkCode() { const urlParams = new URLSearchParams(window.location.search); const code = urlParams.get('code'); const state = urlParams.get('state'); if (code && state) { // 如果有code,则存起来 if (this.codeUsed) { this.wxLogin() } else { this.wxCode = code this.state = state } } else { // 如果没有code,可能是授权失败,给出提示或处理 this.wxLogin() } }, // 通过type / 域名 获取code wxLogin() { getSocialRedirect({ type: 31, // 31:微信公众号 34:微信小程序 redirectUri: BASEURL, // BASEURL, }).then(res => { window.location.href = res.data // 去获取code this.getUrlCode(res.data) this.codeUsed = false }).catch(err => { uni.showToast({ title: err.msg, icon: 'none' }) }) },
06-08 - 小程序auth.code2Session报错 ,错误码600002?怎么解决
[图片]拿到code之后,用https://api.weixin.qq.com/sns/jscode2session换取openid 时,线上报600002
2022-07-13