對于之前的代碼進(jìn)行封裝
成都創(chuàng)新互聯(lián)長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為四川企業(yè)提供專業(yè)的成都網(wǎng)站制作、做網(wǎng)站,
四川網(wǎng)站改版等技術(shù)服務(wù)。擁有十多年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
原始文件app.js
對于返回節(jié)點進(jìn)行判斷,如果新增了節(jié)點,就打印新增節(jié)點。
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
| //打印字符串 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'){ var note = nodes.addNote(argv.title,argv.body); if(note){ console.log('add success'); console.log(`title:${note.title}`); console.log(`body:${note.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'); }
|
notes.js:
封裝 獲取節(jié)點以及保存節(jié)點、返回節(jié)點。
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 47 48 49 50 51 52 53 54 55 56
| console.log('start nodes.js'); const fs = require('fs');
//從文件中獲取節(jié)點 var fetchNode = ()=>{ try{ var notesString = fs.readFileSync('notes-data.json'); return JSON.parse(notesString); }catch(e){ return []; } } //保存節(jié)點到文件 var saveNote = (notes)=>{
fs.writeFileSync('notes-data.json',JSON.stringify(notes));
}
//增加節(jié)點,如果新增返回新增節(jié)點。 var addNote = (title,body)=>{ var notes = fetchNode(); var note = { title, body };
//篩選出相同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title===title); //沒有相同的節(jié)點 if(duplicateNotes.length ===0){ notes.push(note); saveNote(notes); return note; } }
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 };
|
測試
打開控制臺,在當(dāng)前目錄下輸入:
1
| > node app.js add --title="buy book3" --body="jonson"
|
控制臺返回結(jié)果:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| start nodes.js Start app. [ '/Users/jackson/.nvm/versions/node/v10.13.0/bin/node', '/Users/jackson/Desktop/compaign/app.js', 'add', '--title=buy book3', '--body=jonson' ] yargs { _: [ 'add' ], title: 'buy book3', body: 'jonson', '$0': 'app.js' } add success title:buy book3 body:jonson
|
移除節(jié)點
app.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
| //打印字符串 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'){ var note = nodes.addNote(argv.title,argv.body); if(note){ console.log('add success'); console.log(`title:${note.title}`); console.log(`body:${note.body}`); } }else if(command === 'list'){ nodes.getAll();
}else if(command =='read'){ nodes.getNote(argv.title); }else if(command=='remove'){ var noteRemoved = nodes.removeNote(argv.title); var message = noteRemoved?'Note was removed':'note not found'; console.log(message); }else{ console.log('command not find'); }
|
notes.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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| console.log('start nodes.js'); const fs = require('fs'); //從文件中獲取節(jié)點 var fetchNode = ()=>{ try{ var notesString = fs.readFileSync('notes-data.json'); return JSON.parse(notesString); }catch(e){ return []; } } //保存節(jié)點到文件 var saveNote = (notes)=>{
fs.writeFileSync('notes-data.json',JSON.stringify(notes));
}
//增加節(jié)點,如果新增返回新增節(jié)點。 var addNote = (title,body)=>{ var notes = fetchNode(); var note = { title, body };
//篩選出相同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title===title); //沒有相同的節(jié)點 if(duplicateNotes.length ===0){ notes.push(note); saveNote(notes); return note; } }
var getAll = ()=>{ console.log('Get All notes'); };
var getNote = (title)=>{
console.log('getting note',title); };
var removeNote = (title)=>{ var notes = fetchNode(); //篩選出不同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title!==title); saveNote(duplicateNotes); return notes.length !==duplicateNotes.length; };
module.exports = { addNote, getAll, getNote, removeNote };
|
測試2
打開控制臺,在當(dāng)前目錄下輸入:
1
| > node app.js remove --title="buy book2"
|
控制臺返回結(jié)果并且josn文件中對應(yīng)元素被移除:
1 2 3 4 5 6 7 8
| start nodes.js Start app. [ '/Users/jackson/.nvm/versions/node/v10.13.0/bin/node', '/Users/jackson/Desktop/compaign/app.js', 'remove', '--title=buy book2' ] yargs { _: [ 'remove' ], title: 'buy book2', '$0': 'app.js' } Note was removed
|
獲取節(jié)點
app.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
| //打印字符串 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'){ var note = nodes.addNote(argv.title,argv.body); if(note){ console.log('add success'); console.log(`title:${note.title}`); console.log(`body:${note.body}`); } }else if(command === 'list'){ nodes.getAll();
}else if(command =='read'){ var note = nodes.getNote(argv.title); if(note){ console.log('find'); console.log(`title:${note.title}`); console.log(`body:${note.body}`); }else{ console.log('note not found'); } }else if(command=='remove'){ var noteRemoved = nodes.removeNote(argv.title); var message = noteRemoved?'Note was removed':'note not found'; console.log(message); }else{ console.log('command not find'); }
|
notes.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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| console.log('start nodes.js'); const fs = require('fs'); //從文件中獲取節(jié)點 var fetchNode = ()=>{ try{ var notesString = fs.readFileSync('notes-data.json'); return JSON.parse(notesString); }catch(e){ return []; } } //保存節(jié)點到文件 var saveNote = (notes)=>{
fs.writeFileSync('notes-data.json',JSON.stringify(notes));
}
//增加節(jié)點,如果新增返回新增節(jié)點。 var addNote = (title,body)=>{ var notes = fetchNode(); var note = { title, body };
//篩選出相同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title===title); //沒有相同的節(jié)點 if(duplicateNotes.length ===0){ notes.push(note); saveNote(notes); return note; } }
var getAll = ()=>{
};
var getNote = (title)=>{
var notes = fetchNode(); //篩選出相同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title===title); return duplicateNotes[0]; };
var removeNote = (title)=>{ var notes = fetchNode(); //篩選出不同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title!==title); saveNote(duplicateNotes); return notes.length !==duplicateNotes.length; };
module.exports = { addNote, getAll, getNote, removeNote };
|
測試3
打開控制臺,在當(dāng)前目錄下輸入:
1
| > node app.js read --title="buy book3"
|
控制臺返回結(jié)果:
1 2 3 4 5 6 7 8 9 10 11
| start nodes.js Start app. [ '/Users/jackson/.nvm/versions/node/v10.13.0/bin/node', '/Users/jackson/Desktop/compaign/app.js', 'read', '--title=buy book3', '--body=123' ] yargs { _: [ 'read' ], title: 'buy book3', body: 123, '$0': 'app.js' } find title:buy book3 body:jonson
|
列出所有節(jié)點
app.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
| //打印字符串 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'){ var note = nodes.addNote(argv.title,argv.body); if(note){ console.log('add success'); console.log(`title:${note.title}`); console.log(`body:${note.body}`); } }else if(command === 'list'){ var allnotes = nodes.getAll(); allnotes.forEach((note)=>{ console.log(note)}); }else if(command =='read'){ var note = nodes.getNote(argv.title); if(note){ console.log('find'); console.log(`title:${note.title}`); console.log(`body:${note.body}`); }else{ console.log('note not found'); } }else if(command=='remove'){ var noteRemoved = nodes.removeNote(argv.title); var message = noteRemoved?'Note was removed':'note not found'; console.log(message); }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 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| console.log('start nodes.js'); const fs = require('fs'); //從文件中獲取節(jié)點 var fetchNode = ()=>{ try{ var notesString = fs.readFileSync('notes-data.json'); return JSON.parse(notesString); }catch(e){ return []; } } //保存節(jié)點到文件 var saveNote = (notes)=>{
fs.writeFileSync('notes-data.json',JSON.stringify(notes));
}
//增加節(jié)點,如果新增返回新增節(jié)點。 var addNote = (title,body)=>{ var notes = fetchNode(); var note = { title, body };
//篩選出相同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title===title); //沒有相同的節(jié)點 if(duplicateNotes.length ===0){ notes.push(note); saveNote(notes); return note; } }
var getAll = ()=>{ var notes = fetchNode(); return notes; };
var getNote = (title)=>{
var notes = fetchNode(); //篩選出相同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title===title); return duplicateNotes[0]; };
var removeNote = (title)=>{ var notes = fetchNode(); //篩選出不同的節(jié)點 var duplicateNotes = notes.filter((note)=>note.title!==title); saveNote(duplicateNotes); return notes.length !==duplicateNotes.length; };
|
測試4
打開控制臺,在當(dāng)前目錄下輸入:
控制臺返回結(jié)果:
1 2 3 4 5 6 7 8
| start nodes.js Start app. [ '/Users/jackson/.nvm/versions/node/v10.13.0/bin/node', '/Users/jackson/Desktop/compaign/app.js', 'list' ] yargs { _: [ 'list' ], '$0': 'app.js' } { title: 'buy book3', body: 'jonson' } { title: 'buy book2', body: 'jonson' }
|
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務(wù)器,動態(tài)BGP最優(yōu)骨干路由自動選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨有T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動現(xiàn)已開啟,新人活動云服務(wù)器買多久送多久。
標(biāo)題名稱:nodejs漸入佳境[10]-案例-用戶輸入+json增刪查改-創(chuàng)新互聯(lián)
路徑分享:
http://weahome.cn/article/dcsoss.html