这是我的代码
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个。