“wie man JSON in JS importiert” Code-Antworten

JSON JavaScript importieren

// example.json
{
    "name": "testing"
}


// ES6/ES2015
// app.js
import * as data from './example.json';
const {name} = data;
console.log(name); // output 'testing'
Blyxyas

wie man JSON in JS importiert

const jsonCountry = "dist.countries.json";
fetch(jsonCountry)
    .then(Response => Response.json())
    .then(data => {
        console.log(data);
        // or whatever you wanna do with the data
    });
Indonesia People

Ähnliche Antworten wie “wie man JSON in JS importiert”

Fragen ähnlich wie “wie man JSON in JS importiert”

Weitere verwandte Antworten zu “wie man JSON in JS importiert” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen