簡體   English   中英

ios文件下載不起作用

[英]Ios file download not working

我在下載 IOS 文件時遇到問題。 我試圖讓用戶在點擊鏈接時下載文件。 我創建了一個 blob 並點擊了鏈接。

它在台式機上運行良好,但在移動設備上運行不...

            let blob = new Blob([success], { type: success.type });
        if (window.navigator && window.navigator.msSaveOrOpenBlob) {
          window.navigator.msSaveOrOpenBlob(blob, dd.filename);
        } else {
          let a  = document.createElement('a');
          let url = URL.createObjectURL(blob);
          a.href = url;
          a.download = dd.filename;
          document.body.appendChild(a);
          a.click();
          document.body.removeChild(a);
          this.flashService.success('Dernières consultations', 'Ce document a été téléchargé');
          this.downloaded.emit(this.document);
        }

謝謝,

我終於找到了答案。

{ type: success.type }

我在這個變量中有錯誤的類型,這就是原因。 手機導航無法識別文件類型

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM