“Nodejs Anexar ao JSON” Respostas de código

Nodejs Anexar ao JSON

//Because we want JSON format to the file, we first need to read the file
//parse the data to JS object
//push the new items
//and then overwrite the file
var fs = require('fs')

var currentSearchResult = 'example'

fs.readFile('results.json', function (err, data) {
    var json = JSON.parse(data)
    json.push('search result: ' + currentSearchResult)

    fs.writeFile("results.json", JSON.stringify(json))
})
Sugared Bun

Nodejs Anexar ao JSON

var fs
json.push
Dead Dragonfly

Respostas semelhantes a “Nodejs Anexar ao JSON”

Perguntas semelhantes a “Nodejs Anexar ao JSON”

Mais respostas relacionadas para “Nodejs Anexar ao JSON” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código