我想在线预览doc文档,51微信小程序查询当前设置的最低基础库版本及各版本用户占比 (仅供第三方代微信小程序调用)+ ...。appid的域名和下载地址是一直的,装有ssl证书,官方说是先下载再打开,我的测试地址是下面这个,浏览器可以打开下载,而用微信小程序官方方法就不行,下载返回的数据:
errMsg:提示文件是空
statusCode:404,
搞不懂为什么,请教大神和官方。
doc地址:
https://www.smartkedou.com/wendanguanli/0/c683be60-69d5-4530-9968-0bd319e4cf09/c683be60-69d5-4530-9968-0bd319e4cf09__1/图片-b64646f5-9a9b-4237-8377-7cbf19a2f100.docx
wx.downloadFile({
url:"https://www.smartkedou.com/wendanguanli/0/c683be60-69d5-4530-9968-0bd319e4cf09/c683be60-69d5-4530-9968-0bd319e4cf09__1/图片-b64646f5-9a9b-4237-8377-7cbf19a2f100.docx",
success: function (res) {
console.log("下载成功!",res)
var filePath = res.tempFilePath;
if (res.statusCode === 200) {
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log("打开文档成功!", res)
},
fail: function (res) {
console.log("打开文档失败!", res)
}
});
}
},fail(res){
console.log("下载失败!",res)
}
})
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
本文网址:http://www.91bianli.com/weixinxiaochengxu/56103.html