“So lesen Sie eine JSON -Datei im Knoten JS” Code-Antworten

Lesen Sie den JSON -Dateiknoten JS

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

Schreiben Sie JSON -Dateiknotenjs

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 Lesen Sie die JSON -Datei

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

So erhalten Sie JSON -Daten von der JSON -Datei im Knoten 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

So lesen Sie eine JSON -Datei im Knoten JS

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

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

Ähnliche Antworten wie “So lesen Sie eine JSON -Datei im Knoten JS”

Fragen ähnlich wie “So lesen Sie eine JSON -Datei im Knoten JS”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen