所以我在这里有一大堆代码:
lockskipCommand = (function(_super) {
__extends(lockskipCommand, _super);
function lockskipCommand() {
return lockskipCommand.__super__.constructor.apply(this, arguments);
}
lockskipCommand.prototype.init = function() {
this.command = '/lockskip';
this.parseType = 'exact';
return this.rankPrivelege = 'bouncer';
};
lockskipCommand.prototype.functionality = function() {
data.lockBooth();
new ModerationForceSkipService();
return setTimeout((function() {
return data.unlockBooth();
}), 4500);
};
return lockskipCommand;
})(Command);
我希望能让它有一些冷静,所以它不能连续快速使用。我想要这个的原因是为了防止人们被跳过,因为这就是跳过人们的代码块。
我希望这是足够的信息来获得一些帮助。谢谢!
答案 0 :(得分:2)
您可以使用Underscore的debounce()
方法(true
作为第三个参数)。
如果你不想在这个简单的任务中加入Underscore,你可以......
var debounceFn = function (fn, delay) {
var lastInvocationTime = Date.now();
delay = delay || 0;
return function () {
(Date.now() - delay > lastInvocationTime) && (lastInvocationTime = Date.now()) && fn && fn();;
};
};
我需要的是一种不能连续多次执行命令的方法。
你可以做类似的事情......
var onceFn = function (fn) {
var invoked = false;
return function () {
! invoked && (invoked = true) && fn && fn();
};
};