YError:提供的参数过多。预计最多2个,但收到3个

时间:2019-10-30 12:44:39

标签: yargs

这是我的代码

require("yargs")

  .command("count", "Count the lines in a file",({argv})=>{console.log("1111",argv,"2222")})
  .command("vzgo", "Count the lines in a file",({argv})=>{console.log("44444",argv,"33333")})
  .alias("f", "user","ok")
  .describe("f", "Load a file")
  .demandOption(["f"])
  .help("h")
  .alias("h", "help").argv;

当我在终端机node src/index.js vzgo --user 15 --ok 30中运行时,出现此错误。

  

YError:提供的参数过多。预计最多2个,但收到3个。

0 个答案:

没有答案