问题描述:
使用和在真机调试和体验版没问题,线上却下载失败:
先看看我的代码
<van-button type="primary" size="small" plain catchtap='downloadFile' icon="down">导出</van-button>
// 下载导出数据
downloadFile() {
wx.showLoading({
title: "加载中",
});
wx.downloadFile({
url: 'url',
header: {
},
success(res) {
console.log(res);
if <