时间:2019-05-07 来源:小程序工厂
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
wx.downloadFile({
url:"https://minp.yrlsy.com"+file,
header: {},
success: function (res) {
console.log(res)
var Path = res.tempFilePath //返回的文件临时地址,用于后面打开本地预览所用
wx.showToast({
title: '正在打开',
icon: 'loading',
duration: 1000
});
wx.openDocument({
filePath: Path,
success: function (resf) {
console.log('打开文档成功')
setTimeout(function(){wx.redirectTo({url: "../index/index"})},1000)
}
})
},
fail: function(res) {
console.log('文件下载失败');
},
complete: function(res) {},
})
只有安卓的可以
按照教程提供:https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
https://developers.weixin.qq.com/s/vh0xApm97f36
这些文件需要用到吗?
不需要的
这边测试在开发者工具也是失败的,或是你先把参数写死,跑一下
我试过了写死了也不行
安卓测试也是不行,建议检查下代码以及跟后台同学沟通一下
我本地测试文件下载成功的这块没问题的