“Hacer un archivo descargable en React” Código de respuesta

React JS Descargar archivo

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

Descargar archivo en React

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

Hacer un archivo descargable en React

import React from "react";
import { saveAs } from "file-saver";

export default function App() {
  const saveFile = () => {
    saveAs(
      "https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf",
      "example.pdf"
    );
  };
  return (
    <div>
      <button onClick={saveFile}>download</button>
    </div>
  );
}
Samuel Kinuthia

Respuestas similares a “Hacer un archivo descargable en React”

Preguntas similares a “Hacer un archivo descargable en React”

Más respuestas relacionadas con “Hacer un archivo descargable en React” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código