由于上传的文件都是放在阿里云oss服务器,下载的时刻,也是挑选从服务器下载,
重要思绪是把背景返回的预览地点,变成可下载的地点
key是运用阿里云上传的时刻,传的object-key,经由过程背景返回的地点,能够截取到这个object-key
client是猎取上传下载通行证的主体
var url = this.client.signatureUrl(key, {
response: {
'content-disposition': 'attachment; filename="' + name + '.' + type + '"'
}
})
猎取到的url就是可下载地点啦,能够写在a标签内里,加上download属性就能够下载了