我这边也遇到过,然后在h5地址后面拼接了个hash值,就再也没有出现过白屏问题 var hash = md5(Math.random() + "-" + Date.now()) 例如:https://www.baidu.com/test/#/text+"?hash=" + hash
微信小程序加载内嵌网页h5白屏?微信小程序加载网页h5,新发布网页后,会出现部分机型(小米、华为)加载网页白屏,过一段时间(一天左右),才会加载成功,每次新发布,都会出现白屏情况,这是什么原因,有解决办法吗
2022-07-28加载的pdf文件如何修改标题呢
wx.downloadFile只能打开pdf文件,不能另存为https://developers.weixin.qq.com/miniprogram/dev/api/network/download/wx.downloadFile.html 开始是先打开,然后有三个小点里面有另存为按扭,现在无缘无故只能打开pdf文件了,没有右边三个小点进行另存为了,已经试过多个手机结果都一样,现在界面如下:[图片] 代码如下: wx.request({ url: app.d.url+'/api.php/report/download', data: { id }, method: 'POST', success:(res)=> { wx.downloadFile({ url: res.data.data.url, //仅为测试接口,并非真实的 success: function(res){ var filePath = res.tempFilePath let type = res.tempFilePath.slice(res.tempFilePath.lastIndexOf(".")+1) console.log(type); wx.openDocument({ filePath: filePath, fileType:type, }) } }) var _this = this; _this.setData({ loading:true }) } }) },
2022-06-14