“Télécharger le fichier JSON REACT” Réponses codées

Télécharger le fichier JSON REACT


  const exportData = () => {
    const jsonString = `data:text/json;chatset=utf-8,${encodeURIComponent(
      JSON.stringify(data)
    )}`;
    const link = document.createElement("a");
    link.href = jsonString;
    link.download = "data.json";

    link.click();
  };

  return (
    <div className="App">
      <h1>Hello CodeSandbox</h1>
      <h2>Start editing to see some magic happen!</h2>
      <button type="button" onClick={exportData}>
        Export Data
      </button>
    </div>
  );
}
Daniel Kristoffersen

Donwload les données de React JS dans le fichier JSON

const downloadFile = async () => {
  const {myData} = this.state; // I am assuming that "this.state.myData"
                               // is an object and I wrote it to file as
                               // json
  const fileName = "file";
  const json = JSON.stringify(myData);
  const blob = new Blob([json],{type:'application/json'});
  const href = await URL.createObjectURL(blob);
  const link = document.createElement('a');
  link.href = href;
  link.download = fileName + ".json";
  document.body.appendChild(link);
  link.click();
  document.body.removeChild(link);
}
Perfect Panther

Réponses similaires à “Télécharger le fichier JSON REACT”

Questions similaires à “Télécharger le fichier JSON REACT”

Plus de réponses similaires à “Télécharger le fichier JSON REACT” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code