“JSON JavaScript importieren” 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 “JSON JavaScript importieren”

Fragen ähnlich wie “JSON JavaScript importieren”

Weitere verwandte Antworten zu “JSON JavaScript importieren” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen