原始文件
app.js:
成都创新互联公司专注为客户提供全方位的互联网综合服务,包含不限于
网站制作、做网站、庆阳网络推广、
小程序开发、庆阳网络营销、庆阳企业策划、庆阳品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们大的嘉奖;
成都创新互联公司为所有大学生创业者提供
庆阳建站搭建服务,24小时服务热线:18982081108,官方网址:www.cdcxhl.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| const yargs = require('yargs'); const nodes = require('./nodes.js') console.log('Start app.');
console.log(process.argv);
console.log('yargs',yargs.argv); const argv = yargs.argv; var command = process.argv[2];
if(command==='add'){ nodes.addNote(argv.title,argv.body); }else if(command === 'list'){ nodes.getAll();
}else if(command =='read'){ nodes.getNote(argv.title); }else if(command=='remove'){ nodes.removeNote(argv.title); }else{ console.log('command not find'); }
|
nodes.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| console.log('start nodes.js'); const fs = require('fs'); var addNote = (title,body)=>{ var notes = []; var note = { title, body };
try{ //读取json文件,读出来是string var notesString = fs.readFileSync('notes-data.json'); // string转换为json对象 notes = JSON.parse(notesString); }catch(e){
} //增加 notes.push(note); //保存 fs.writeFileSync('notes-data.json',JSON.stringify(notes)); }
var getAll = ()=>{ console.log('Get All notes'); };
var getNote = (title)=>{
console.log('getting note',title); };
var removeNote = (title)=>{ console.log('Removing note',title); };
module.exports = { addNote, getAll, getNote, removeNote };
|
打开控制台,在当前目录下输入:
1
| > node app.js add --title="buy book2" --body="jonson"
|
将节点添加到notes-data.json文件中.
再次输入:
1
| > node app.js add --title="buy book2" --body="jonson"
|
notes-data.json:
1
| [{"title":"buy book2","body":"jonson"},{"title":"buy book2","body":"jonson"}]
|
改进 不添加重复的节点
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| console.log('start nodes.js'); const fs = require('fs'); var addNote = (title,body)=>{ var notes = []; var note = { title, body };
try{ var notesString = fs.readFileSync('notes-data.json'); notes = JSON.parse(notesString); }catch(e){
}
//筛选出相同的节点 var duplicateNotes = notes.filter((note)=>note.title===title); //没有相同的节点 if(duplicateNotes.length ===0){ notes.push(note); fs.writeFileSync('notes-data.json',JSON.stringify(notes)); }
}
var getAll = ()=>{ console.log('Get All notes'); };
var getNote = (title)=>{
console.log('getting note',title); };
var removeNote = (title)=>{ console.log('Removing note',title); };
module.exports = { addNote, getAll, getNote, removeNote };
|
再次输入不会添加节点:
1
| > node app.js add --title="buy book2" --body="jonson"
|
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
网页名称:nodejs渐入佳境[9]-保存节点到json文件-创新互联
当前URL:
http://cdkjz.cn/article/dejghg.html