4

所以我在这里有这段代码:

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);

我希望能够让它有某种冷却,所以它不能连续快速使用。我想要这个的原因是为了防止人们被跳过,因为这就是这段代码用来跳过人的。

我希望这是足够的信息来获得一些帮助。谢谢!

4

1 回答 1

2

您可以使用下划线的debounce()方法(true作为第三个参数)。

如果你不想在这个简单的任务中包含下划线,你可以这样做......

var debounceFn = function (fn, delay) {
    var lastInvocationTime = Date.now();
    delay = delay || 0;

    return function () {
        (Date.now() - delay > lastInvocationTime) && (lastInvocationTime = Date.now()) && fn && fn();;
    };
};

js小提琴

我需要的是一种不能连续多次执行命令的方法。

你可以做类似的事情...

var onceFn = function (fn) {
    var invoked = false;

    return function () {
        ! invoked && (invoked = true) && fn && fn();
    };
};

js小提琴

于 2013-07-02T09:43:02.553 回答