“JS escribe en el archivo JSON” Código de respuesta

JS escribe en el archivo JSON

fs.writeFile ("file.json", JSON.stringify(data), function(err) {
    if (err) throw err;
    console.log('complete');
    }
);
Fusinato

Escribir el archivo 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

JS escribiendo en el archivo JSON

var fs = require('fs');

var data = {}
data.table = []
for (i=0; i <26 ; i++){
   var obj = {
       id: i,
       square: i * i
   }
   data.table.push(obj)
}
fs.writeFile ("input.json", JSON.stringify(data), function(err) {
    if (err) throw err;
    console.log('complete');
    }
);
Hungry Hamerkop

Respuestas similares a “JS escribe en el archivo JSON”

Preguntas similares a “JS escribe en el archivo JSON”

Más respuestas relacionadas con “JS escribe en el archivo JSON” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código