- 当前 Bug 的表现(可附上截图)
微信小程序 Word真机调试可以打开 通过域名打不开
- 预期表现
微信小程序 Word真机调试可以打开 通过域名也可以打开
- 提供一个最简复现 Demo
//下载Word
downloadFile: function (e) {
let url = e.currentTarget.dataset.url.replace("http:", "https:");
// url = url.replace("http:", "https:");
console.log('url-----------'+url);
wx.downloadFile({
url: url,
success: function (res) {
var filePath = res.tempFilePath;
wx.openDocument({
filePath: filePath,
fileType: "doc",
success: function (res) {
wx.hideLoading()
console.log('打开文档成功')
},
fail: function (res) {
wx.showToast({
title: '打开失败',
image: '/images/icon_warn.png',
duration: 2000
})
},
complete: function (res) {
console.log(res);
}
})
},
fail: function (res) {
console.log('文件下载失败');
},
})
},
有大神知道怎么处理不,求指教。急急急急急急......
微信小程序开发问题解答
本文网址:http://www.91bianli.com/weixinxiaochengxu/51643.html