“Jak odczytać plik JSON w węźle JS” Kod odpowiedzi

Przeczytaj węzeł plik JSON JS

function readJsonFile(file) {
    let bufferData = fs.readFileSync(file)
    let stData = bufferData.toString()
    let data = JSON.parse(stData)
    return data
}
Lucky Lion

Napisz plik JSON NODEJS

const fs = require('fs');
const path = require('path');

let student = { 
    name: 'Mike',
    age: 23, 
    gender: 'Male',
    department: 'English',
    car: 'Honda' 
};
 
fs.writeFileSync(path.resolve(__dirname, 'student.json'), JSON.stringify(student));
Victor Grk

node.js odczytaj plik JSON

//Condensed
JSON.parse(fs.readFileSync("path").toString())
Thankful Toucan

Jak uzyskać dane JSON z pliku JSON w węźle JS

const fs = require("fs"); 
var posts = [];

fs.readFile('./data/posts.json', 'utf8', (err, data) => {
                if (err) throw err;
                posts = JSON.parse(data);
            });
Magnificent Millipede

Jak odczytać plik JSON w węźle JS

const path = require('path')
const fs = require('fs')

blogs = JSON.parse(fs.readFileSync(path.join(__dirname, '../data/blogs.json')).toString())
Strange Snake

Odpowiedzi podobne do “Jak odczytać plik JSON w węźle JS”

Pytania podobne do “Jak odczytać plik JSON w węźle JS”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu