“Download die Datei in React Download” Code-Antworten

React JS Download -Datei reagieren

fetch('https://cors-anywhere.herokuapp.com/' + fileURL, {
    method: 'GET',
    headers: {
      'Content-Type': 'application/pdf',
    },
  })
  .then((response) => response.blob())
  .then((blob) => {
    // Create blob link to download
    const url = window.URL.createObjectURL(
      new Blob([blob]),
    );
    const link = document.createElement('a');
    link.href = url;
    link.setAttribute(
      'download',
      `FileName.pdf`,
    );

    // Append to html link element page
    document.body.appendChild(link);

    // Start download
    link.click();

    // Clean up and remove the link
    link.parentNode.removeChild(link);
  });
Tarik

Download die Datei in React Download

var fileDownload = require('js-file-download');
fileDownload(data, 'filename.csv');
diptnc

Ähnliche Antworten wie “Download die Datei in React Download”

Fragen ähnlich wie “Download die Datei in React Download”

Weitere verwandte Antworten zu “Download die Datei in React Download” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen