91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

镇雄县| 安化县| 南溪县| 公主岭市| 若尔盖县| 桃园县| 宜兰县| 徐闻县| 山丹县| 汉川市| 嘉荫县| 禄丰县| 固镇县| 满洲里市| 鹿泉市| 永川市| 保亭| 潢川县| 仁化县| 屏东县| 东乌珠穆沁旗| 文水县| 布拖县| 尖扎县| 深泽县| 辽源市| 新绛县| 西城区| 英吉沙县| 南宫市| 哈巴河县| 中宁县| 桂林市| 禹城市| 闵行区| 微博| 洞口县| 清水河县| 娱乐| 剑阁县| 凌海市|