大家好,开发小程序时我已经配置了 download请求域名,请求域名也完全符合规范 。调用wx.download 时 提示 downloadFile:fail createDownloadTask:fail url not in domain list。
另外,手机调试 提示 downloadFile:fail downloadFile protocol must be http or https。什么原因呢??
文件路径 https://tel.tq.gov.cn//mini_program/MSG/1171/file/1180.csv 没有任何问题呀? 求高手解答
解决了吗?
请具体描述问题出现的流程,并提供能复现问题的简单代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
//网络文件路径 https://tel.tq.gov.cn//mini_program/MSG/1171/file/1180.csv
downOpen( e){
var path=e.currentTarget.dataset.url;
console.log( "文件路径::"+ path);
var that=this;
wx.downloadFile({
url: path,
success (res) {
console.log( res);
if (res.statusCode === 200) {
console.log( res);
wx.openDocument({
filePath: res.tempFilePath,
})
}
},fail(res){
console.log( "下载失败");
console.log( res);
},complete(res){
console.log( "下载完成!!"); console.log( res);}
})
},