如何通过单击ionic中的Buttun从Firebase存储下载视频? 除了通知,我在离子文档中什么都没有看到。我尝试了其他解决方案,例如Dropbox,但没有看到API。
答案 0 :(得分:0)
您需要使用以下文件获取文件链接:
afStorage.ref(refInStorage).getDownloadURL().subscribe(fileLink => )
然后通过简单的方法在默认浏览器中打开文件链接:
window.open(fileLink, '_system');
在InAppBrowser或FileOpener(StackOverflow Question)的帮助下,可以打开其他解决方法
一起:
afStorage.ref(refInStorage).getDownloadURL()
.subscribe(fileLink => window.open(fileLink, '_system'))