nodejs 读写文件的方法:
所谓写文件就是将数据写入到空白的文件之中。
操作步骤:
安装 nodejs
安装方法见:http://blog.csdn.net/hobbithero/article/details/45672489使用nodejs的文件系统模块完成读写操作:
var fs = require('fs');
var file_path = 'txt/writeFileSync.txt';
if (fs.existsSync(file_path)) {
//write json data
fs.writeFileSync(file_path, JSON.stringify(datas));
//readfile
var file_contents_pre = fs.readFileSync(file_path, 'utf-8');
}