我正在开发一个Node.js应用,并且我正在使用Vorpal命令。我试图将命令中的值发送到函数但我无法使其工作。我做错了吗?
以下是代码:
vorpal
.command('rollto <num>', 'Rolls to')
.action(function(num) {
rollto(num);
});
function rollto(num) {
bettime = bettimems % 60;
socket.emit('betting', bettime);
timer1 = setInterval(function () {
bettime--;
socket.emit('betting', bettime);
if (bettime == 0) {
socket.emit('random number', num);
console.log("Rolled to:" + num + "!!!");
clearInterval(timer1);
}
}, 1000);
}
答案 0 :(得分:4)
问题是你传递给命令action
的函数的参数与你假设的不同。
以下是docs的相关部分:
.command.action(function)
This is the action execution function of a given command.
It passes in an arguments object and callback.
Actions are executed async and must either call the passed
callback upon completion or return a Promise.
这是一个有效的例子:
var vorpal = require('vorpal')();
vorpal
.command('rollto <num>', 'Rolls to')
.action(function(arguments, callback) {
rollto(arguments, callback);
});
function rollto(arguments, callback) {
var num = arguments.num; // get 'num' parameter from arguments
timer1 = setInterval(function () {
console.log('test');
console.log(num);
clearInterval(timer1);
callback(); // Don't forget to use callback() to notify vorpal
}, 1000);
}
vorpal
.delimiter('myapp$')
.show();
请注意,您实际上在setInterval中有一个异步代码,因此您需要在末尾使用callback()来通知vorpal处理已完成。