IE在下载时要求打开弹出窗口

时间:2017-07-21 10:15:45

标签: html angular internet-explorer

enter image description here

我正在开发Angular 2文件下载。

HTML

<a (click)="download(tempDisplayItem)" class="downloadNameColor">
  {{tempDisplayItem.displayFileName}}
</a>

JS

download (file) {
  window.open(file.url);
}

我在点击下载时在其他标签中打开文件。对于.xlsx文件,它显示了打开,保存选项的弹出窗口。对于.txt,它没有显示。我想为所有文件显示弹出窗口。我该怎么做?

0 个答案:

没有答案