亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nodejs漸入佳境[9]-保存節點到json文件

發布時間:2020-07-02 10:55:28 來源:網絡 閱讀:504 作者:jonson_jackson 欄目:開發技術

原始文件

app.js:

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"
  • 本文鏈接: https://dreamerjonson.com/2018/11/13/node-9/

  • 版權聲明: 本博客所有文章除特別聲明外,均采用 CC BY 4.0 CN協議 許可協議。轉載請注明出處!

nodejs漸入佳境[9]-保存節點到json文件

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广水市| 康马县| 马鞍山市| 阿克陶县| 玉田县| 铁岭县| 阿勒泰市| 梁平县| 兴化市| 观塘区| 扶绥县| 颍上县| 神木县| 拜泉县| 泸定县| 板桥市| 茶陵县| 宁南县| 阳西县| 昭觉县| 始兴县| 马尔康县| 邯郸市| 和林格尔县| 安阳县| 镇远县| 罗平县| 全州县| 绍兴县| 兴国县| 壶关县| 毕节市| 宁安市| 彝良县| 图们市| 霍林郭勒市| 高平市| 赫章县| 读书| 安陆市| 五家渠市|