已经解决。 云开发平台有个设置 ==> 权限设置 ==> 打开当前云环境未登录用户访问权限就行了 但是还是会弹窗script error 。我直接把html 里的 window.onerror 方法给干掉了。
h5链接打开小程序 在微信中可以打开,在外部浏览器报错,且无法打开?https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/staticstorage/jump-miniprogram.html 小程序 已认证,非个人主体。 按照网友给的操作写了云函数和跳转 html。现在在微信内部可以成功跳转小程序,但是在微信外部服务器,都无法跳转 UC 浏览器 安卓会弹窗报错 script error。 ios 会有个弹窗 [图片]
2022-01-21步骤全都是按照官网文档和网友们成功案例来操作的。 本来想通过注释script 脚本来找下错在哪。现在发现这个html 就是一个错误。
静态网页跳转小程序。jump.html 报错 script error?静态网页跳转小程序,我把html 里面全部的script 标签都干掉了,只留了一个 <script> window.onerror = (message, url, line, column, error) => { alert('发生错误' + message) } </script> 在手机浏览器上打开还是会报错、 是不是我哪里没有设置啊?
2022-01-20作者你好,想问下URL scheme 携带的参数,是由后端配置的吗?
请问一下, 小程序页面 如何获取 URL Scheme 携带的参数呢?请问一下, 小程序页面 如何获取 URL Scheme 携带的参数呢? 测试环境无法测试, URL Scheme 只能生成线上的 , 不太好测试
2022-01-10const { code } = to.query; const restoreUriKey = 'RESTORE_URI'; if (!code) { localStorage.setItem(restoreUriKey, window.location.href); // 授权 window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${process.env.VUE_APP_WECHAT_APPID}&redirect_uri=${encodeURIComponent(`${process.env.VUE_APP_REDIRECT_URI}`)}&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect`; return next(false); } // 后端调用微信后台接口 通过code获取token createToken({ code }) .then(data => { const { token: newToken = '' } = data; if (newToken) { store.commit('token/set', newToken); window.location.href = localStorage.getItem(restoreUriKey) || '/'; } else { window.location.reload(); } }) .catch(() => { window.location.href = localStorage.getItem(restoreUriKey) || '/'; }); return false;
H5网页授权问题?第一次进入H5 网页 https:// xxx.com/ 未带有code,需要用户授权用户授权过后,会跳转到重定向的 url ,会带上code=CODE下次再进入已授权的H5网页时,是如何判断已成功授权? 是否再次进入已授权的H5页面时,会自动带上code=CODE?
2021-08-25