node[10]-封装代码

对于之前的代码进行封装

原始文件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
//打印字符串
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:

封装 获取节点以及保存节点、返回节点。

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');

//从文件中获取节点
var fetchNode = ()=>{
  try{
    var notesString = fs.readFileSync('notes-data.json');
    return JSON.parse(notesString);
  }catch(e){
    return [];
  }
}
//保存节点到文件
var saveNote = (notes)=>{

  fs.writeFileSync('notes-data.json',JSON.stringify(notes));

}

//增加节点,如果新增返回新增节点。
var addNote = (title,body)=>{
  var notes = fetchNode();
  var note = {
      title,
      body
  };

  //筛选出相同的节点
  var duplicateNotes = notes.filter((note)=>note.title===title);
  //没有相同的节点
  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
};

测试

打开控制台,在当前目录下输入:

1
> node app.js add --title="buy book3" --body="jonson"

控制台返回结果:

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

移除节点

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');
//从文件中获取节点
var fetchNode = ()=>{
  try{
    var notesString = fs.readFileSync('notes-data.json');
    return JSON.parse(notesString);
  }catch(e){
    return [];
  }
}
//保存节点到文件
var saveNote = (notes)=>{

  fs.writeFileSync('notes-data.json',JSON.stringify(notes));

}

//增加节点,如果新增返回新增节点。
var addNote = (title,body)=>{
  var notes = fetchNode();
  var note = {
      title,
      body
  };

  //筛选出相同的节点
  var duplicateNotes = notes.filter((note)=>note.title===title);
  //没有相同的节点
  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();
  //筛选出不同的节点
  var duplicateNotes = notes.filter((note)=>note.title!==title);
    saveNote(duplicateNotes);
    return notes.length !==duplicateNotes.length;
};

module.exports = {
    addNote,
    getAll,
    getNote,
    removeNote
};

测试2

打开控制台,在当前目录下输入:

1
> node app.js remove --title="buy book2"

控制台返回结果并且josn文件中对应元素被移除:

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

获取节点

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
63
64
65
console.log('start nodes.js');
const fs = require('fs');
//从文件中获取节点
var fetchNode = ()=>{
  try{
    var notesString = fs.readFileSync('notes-data.json');
    return JSON.parse(notesString);
  }catch(e){
    return [];
  }
}
//保存节点到文件
var saveNote = (notes)=>{

  fs.writeFileSync('notes-data.json',JSON.stringify(notes));

}

//增加节点,如果新增返回新增节点。
var addNote = (title,body)=>{
  var notes = fetchNode();
  var note = {
      title,
      body
  };

  //筛选出相同的节点
  var duplicateNotes = notes.filter((note)=>note.title===title);
  //没有相同的节点
  if(duplicateNotes.length ===0){
    notes.push(note);
    saveNote(notes);
    return note;
  }
}

var getAll = ()=>{
  var notes = fetchNode();
  //筛选出相同的节点
  var duplicateNotes = notes.filter((note)=>note.title===title);
  return duplicateNotes[0];
};

var getNote = (title)=>{

  var notes = fetchNode();
  //筛选出相同的节点
  var duplicateNotes = notes.filter((note)=>note.title===title);
  return duplicateNotes[0];
};

var removeNote = (title)=>{
  var notes = fetchNode();
  //筛选出不同的节点
  var duplicateNotes = notes.filter((note)=>note.title!==title);
    saveNote(duplicateNotes);
    return notes.length !==duplicateNotes.length;
};

module.exports = {
    addNote,
    getAll,
    getNote,
    removeNote
};

测试3

打开控制台,在当前目录下输入:

1
> node app.js read  --title="buy book3"

控制台返回结果:

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

 

郑建勋(jonson)区块链工程师 & Web工程师

灾难总是接踵而至,这正是世间的常理。你以为只要哭诉一下,就会有谁来救你吗?如果失败了,就只能说明我不过是如此程度的男人。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值