小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在电脑开发工具正常,在手机体验版,打开调试工具可以打开文件,但是关闭调试器后打不开文件
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你这调试工具一关闭就打不开,那就是合法域名没有配置。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
体验版打不开pdf为啥啊,
open(e) { // console.log(e.currentTarget.dataset.url); //打开pdf文件 wx.showToast({ title: '加载中...', icon: 'none' }) wx.downloadFile({ url: 'https://wxcsn.uyou.com/mall_web/view/pdf/YWSL.pdf', // url: e.currentTarget.dataset.url, success: function (res) { // alert('downloadFile', res); const filePath = res.tempFilePath wx.openDocument({ filePath: filePath, success: function (res) { console.log(res); console.log('打开文档成功') wx.hideLoading() }, fail: function (res) { console.log('打开失败') wx.showToast({ title: '打开失败', icon: 'none' }) }, }) }, fail(res){ alert(res) } }) },
楼主 为啥我这边配置了合法域名还是在真机上打不开
楼主解决了吗?可以告知解决方法吗?
贴代码看看 需要先下载后再打开
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你这调试工具一关闭就打不开,那就是合法域名没有配置。
体验版打不开pdf为啥啊,
open(e) { // console.log(e.currentTarget.dataset.url); //打开pdf文件 wx.showToast({ title: '加载中...', icon: 'none' }) wx.downloadFile({ url: 'https://wxcsn.uyou.com/mall_web/view/pdf/YWSL.pdf', // url: e.currentTarget.dataset.url, success: function (res) { // alert('downloadFile', res); const filePath = res.tempFilePath wx.openDocument({ filePath: filePath, success: function (res) { console.log(res); console.log('打开文档成功') wx.hideLoading() }, fail: function (res) { console.log('打开失败') wx.showToast({ title: '打开失败', icon: 'none' }) }, }) }, fail(res){ alert(res) } }) },
楼主 为啥我这边配置了合法域名还是在真机上打不开
楼主解决了吗?可以告知解决方法吗?
贴代码看看 需要先下载后再打开
url: this.data.druglist.instructions,
success: function (res) {
const filePath = res.tempFilePath
console.log(filePath)
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
}
})
}
})