我希望能够以与console.log中显示的相同的方式在req.query中保存名称值对(如下所示)。到目前为止,当我尝试将req.query的内容保存到文件中时,我得到了[object object]。有人能帮我吗。谢谢!
console.log(req.query)
{ field1: 'employee_id',
field2: 'first',
field3: 'last',
field4: 'email',
format: 'CSV',
type1: 'numerical',
type2: 'text',
type3: 'text',
type4: 'email' }
我保存req.query的代码:
fs.writeFile("./data/client_data", req.query, function(err) {
if(err) throw err;
console.log("The file was saved!");
});