“Как импортировать JSON в JS” Ответ

Импорт JSON JavaScript

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


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

Как импортировать JSON в JS

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

Ответы похожие на “Как импортировать JSON в JS”

Вопросы похожие на “Как импортировать JSON в JS”

Больше похожих ответов на “Как импортировать JSON в JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования