我的 Firebase 存储中有文件。我希望能够单击下载文件按钮。
例如
<button (click)="download()"></button>
和组件类:
download(){
const file_url = 'audio/7ejhsjd';
// Change file name
//download file
}
我想更改文件的文件名(元数据)然后下载它。
如何在 JavaScript 或 TypeScript 中实现此目的?
function download(){
const file_url = 'https://www.google.com.ua/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png';
var el = document.createElement('a');
el.download = file_url;
el.href = file_url;
document.body.appendChild(el);
el.click();
el.remove();
}
<body>
<button onclick="download()">Download!</button>
</body>
我是一名优秀的程序员,十分优秀!