- 小程序想要打开公众号链接,域名配置了,但是没有关联该公众号。真的无法打开嘛?别人的公众号,无法关联
https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxb74fd0d0fdc625ac&redirect_uri=https%3A%2F%2Fweixin.towngasvcc.com%2Fvcc-oauth%2Foauth%2Fauthorize2%2Funion%3Fclientid%3Dpe92a8wechatYX0105%26redirectUri%3Dhttps%253A%252F%252Fweixin.towngasvcc.com%252Fh5-gas%252Fpages%252FtransitionPage%252Findex&response_type=code&scope=snsapi_base&state=p0ca8cDx1fO091aYjzk3&connect_redirect=1#wechat_redirect
06-21 - 使用文件流生成pdf测试正常,上线后无法打开?
getFileSystemManager [图片]
2023-08-09 - 文件预览功能,在预览时使用没有问题,但是上线后处于点击没有反应状态?。
做了一个文件预览功能,在预览时使用没有问题,但是上线后处于点击没有反应状态。不知官方是什么形式 //文件预览功能微信预览需要先下载 uni.downloadFile({ url: val, success: function(res) { uni.hideLoading(); var filePath = res.tempFilePath; setTimeout(() => { //打开文档查看 uni.openDocument({ filePath: filePath, success: function(res) { uni.showToast({ icon: 'none', mask: true, title: '文件已打开', //保存路径 duration: 3000, }); } }); }, 1000) }, fail: function(err) { uni.hideLoading(); } });
2023-07-25