我正在编写一个Express.js应用程序,该应用程序应该能够创建带有请求信息的JSON格式输出,并相应地将此信息写入JSON文件。我是Node& Express的新用户,到目前为止,我已尝试使用fs.writeFile('file.json', data, function(err){})
,但我需要将data
附加到file.json
。完美的输出应该是:
[
{somekey: someValue},
//each time the new request is sent the object should be added here
{shomeKeyFromNewRequest: someValueFromNewRequest}
]