“Nodejs hängen an JSON an” Code-Antworten

Nodejs hängen an JSON an

//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 hängen an JSON an

var fs
json.push
Dead Dragonfly

Ähnliche Antworten wie “Nodejs hängen an JSON an”

Fragen ähnlich wie “Nodejs hängen an JSON an”

Weitere verwandte Antworten zu “Nodejs hängen an JSON an” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen