尝试将字符串传递到必填字段时,Commander.js引发错误

时间:2019-04-27 22:06:59

标签: javascript typescript command-line-interface node-commander

我只是想将值作为字符串传递为必填字段

import commander from 'commander';

const split = (str: string) => {
    return str.split(',')
};

export const cli = () => {
    commander
        .version('0.0.1')
        .option('-q --query <value>', `Add query example: -q #javascript`, '#javascript')
        .option('-s --min [n]', `Add min amount of time to wait before each action example: -s 2500`, 2500)
        .option('-l --max [n]', `Add max amount of time to wait before each action example: -l 240000`, 240000)
        .option('-d --duration [n]', `Duration in hours example: -d 24`, 1)
        .option('-a --actions <list>', `Actions to use example: -a like, follow`, split, [])
        .parse(process.argv)
        .on('error', () => {
            commander.outputHelp();
            process.exit();
        });

    return commander;
}

我在跑步

 $ ts-node ./index.ts -q #java -s 2403 -l 240001 -d 2 -a follow,like

 /* 
    starting tweety bot 
    error: option `-q --query <value>' argument missing
 */

我正在提供值,但仍会抛出。如果我更改为非必填字段,则仅返回defaultValue而不是传递。

1 个答案:

答案 0 :(得分:0)

原来,您需要添加在数组不使用引号后我省略的引号。

ts-node ./index.ts -q '#java' -s 2403 -l 240001 -d 2 -a follow,like