云存储的cosId,
第一步wx.cloud.download 获取到临时地址
第二步骤 wx.saveFileToDisk, windows 微信可以下载,mac点击无反应,没有任务报错信息。mac微信版本:Version. 3.7.1 (25664) Beta 11
const resp = await wx.cloud.downloadFile({
fileID: id,
config: {
env: globalConfig.containerEnv
}
})
const tempFilePath = resp.tempFilePath
const sysInfo = wx.getSystemInfoSync()
if (sysInfo.platform === 'mac' || sysInfo.platform === 'windows') {
wx.saveFileToDisk({
filePath: tempFilePath,
fail: (err) => {
showWarning(err.errMsg)
}
})
return
}
试试最新beta版https://dldir1.qq.com/weixin/mac/WeChatMac_Beta.dmg