成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

nodejs漸入佳境[11]-yargs獲取用戶輸入高級用法-創(chuàng)新互聯(lián)

yargs高級用法,用于輸出幫助信息,縮寫提示等。

瑪多網(wǎng)站制作公司哪家好,找成都創(chuàng)新互聯(lián)!從網(wǎng)頁設計、網(wǎng)站建設、微信開發(fā)、APP開發(fā)、成都響應式網(wǎng)站建設公司等網(wǎng)站項目制作,到程序開發(fā),運營維護。成都創(chuàng)新互聯(lián)從2013年創(chuàng)立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設就選成都創(chuàng)新互聯(lián)。

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
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
//打印字符串
const yargs = require('yargs');
const nodes = require('./nodes.js')

const argv = yargs
 .command('add','add a new note',{   //add為命令參數(shù),第二個為說明
   title:{       //--titile
     describe:'Title of note',
     demand:true, //必須要的參數(shù)
     alias:'t'  //縮寫 //--t
   },
   body:{
     describe:'Body of note',
     demand:true,
     alias:'b'
   }
 })
 .command('list','List all notes')
 .command('read','Read a note',{
   title:{
     describe:'Title of note',
     demand:true,
     alias:'t'
   }
 })
 .command('remove','Remove a note',{
   title:{
     describe:'Title of note',
     demand:true,
     alias:'t'
   }
 })
 .help()
 .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
57
58
59
60
61
62
63
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;
};

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

測試

打開控制臺,在當前目錄下輸入:

1
> node app.js add --help

控制臺返回結(jié)果:

1
2
3
4
5
6
7
8
9
app.js add

add a new note

選項:
 --version    顯示版本號                                                 [布爾]
 --help       顯示幫助信息                                               [布爾]
 --title, -t  Title of note                                              [必需]
 --body, -b   Body of note                                               [必需]

輸入:

1
> node app.js  --help

控制臺返回結(jié)果:

1
2
3
4
5
6
7
8
9
10
11
app.js [命令]

命令:
 app.js add     add a new note
 app.js list    List all notes
 app.js read    Read a note
 app.js remove  Remove a note

選項:
 --version  顯示版本號                                                   [布爾]
 --help     顯示幫助信息                                                 [布爾]
  • 本文鏈接: https://dreamerjonson.com/2018/11/14/node-11-yargs/

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

nodejs漸入佳境[11]-yargs獲取用戶輸入高級用法

創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務器,動態(tài)BGP最優(yōu)骨干路由自動選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡助力業(yè)務部署。公司持有工信部辦法的idc、isp許可證, 機房獨有T級流量清洗系統(tǒng)配攻擊溯源,準確進行流量調(diào)度,確保服務器高可用性。佳節(jié)活動現(xiàn)已開啟,新人活動云服務器買多久送多久。

分享名稱:nodejs漸入佳境[11]-yargs獲取用戶輸入高級用法-創(chuàng)新互聯(lián)
瀏覽地址:http://jinyejixie.com/article8/decoip.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站改版、全網(wǎng)營銷推廣、云服務器網(wǎng)站制作、品牌網(wǎng)站制作虛擬主機

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

綿陽服務器托管
鹤山市| 磐安县| 巴里| 定州市| 东兴市| 舒兰市| 吉木萨尔县| 潞城市| 梧州市| 申扎县| 肥西县| 辉县市| 海南省| 留坝县| 伊金霍洛旗| 大埔县| 忻城县| 福泉市| 永寿县| 晋宁县| 峨眉山市| 广平县| 马边| 青岛市| 兴安盟| 苗栗县| 和平县| 肥西县| 叙永县| 西平县| 建平县| 屏东市| 图们市| 佳木斯市| 永年县| 焦作市| 平定县| 南乐县| 华宁县| 晴隆县| 宁晋县|