我在使用指挥官时遇到问题: https ://github.com/tj/commander.js/
program
.command('school')
.arguments("<year>")
.option("--month <month>", "specify month")
.parse(process.argv)
.action(function (year) {
console.log(`the year is ${year} and the month is ${program.month}`);
});
我不知道为什么,但program.month
即使我使用--month 12
.
提前致谢。