使用Node.js编写/更新新的JSON文件可以通过以下步骤实现:
const fs = require('fs');
const path = require('path');
const data = {
name: 'John Doe',
age: 30,
email: 'johndoe@example.com'
};
const filePath = path.join(__dirname, 'data.json');
fs.writeFile(filePath, JSON.stringify(data), (err) => {
if (err) throw err;
console.log('JSON file has been created/updated successfully!');
});
node createJson.js
这是一个简单的示例,展示了如何使用Node.js编写/更新新的JSON文件。根据实际需求,可以根据数据结构和逻辑进行更复杂的操作。
领取专属 10元无门槛券
手把手带您无忧上云