使用Angular7直接下载文件

时间:2019-02-17 14:02:02

标签: javascript angular file download

是否可以从angular下载json zip文件?例如使用file:///协议?

否则,我知道使用Blob的其他方法。但是试图找出是否可以直接下载吗?

HTML

<button pButton icon="pi pi-download" [label]="'Download'" (click)='directFileDownload()'></button>

打字稿

  directFileDownload() {
    window.location.href = 'file:///Downloads/test.json';
  }

ERROR TypeError: "Access to 'file:///Downloads/test.json' from script被拒绝。”

0 个答案:

没有答案