如何在Angular 2中下载文件?

时间:2017-07-01 12:04:33

标签: angular

我想点击下载一个文件,我从数据库中获取。例如:

<a class="document" *ngFor="let document of documents">{{document.documentName }}</a>

生病有多个文件,我想下载点击,我该怎么做?

1 个答案:

答案 0 :(得分:0)

您必须生成从数据库到获取文件的路径。那么只有你才能实现它。

<a href="yourserverpath" >Download Template</a>

(或)

替代解决方案是:

您必须将文件保存在应用程序中

<a href="../assets/files/Bulk Item Import.xlsx" >Download Template</a>