📜  Lodash _.after() 方法

📅  最后修改于: 2022-05-13 01:56:38.292000             🧑  作者: Mango

Lodash _.after() 方法

Lodash _.after()方法与Lodash _.before () 方法相反。此方法用于创建一个函数,该函数在被调用 n 次或多次后调用 func。

句法:

_.after(n, func)

参数:此方法接受上面提到的两个参数,如下所述:

  • n:此参数保存定义调用 func 之前调用次数的数字 n。
  • func:此参数保存将调用的函数。

返回值:此方法返回新的受限函数。

下面的示例说明了 JavaScript 中的 Lodash _.after() 方法。

示例 1:在此示例中,我们尝试调用该函数3 次,但它只会调用 3 次。

// Requiring the lodash library  
const _ = require("lodash"); 
  
// Applying _.after() method
var gfg = _.after(3, function () {
  console.log('Saved');
});
  
gfg(); // Print nothing
gfg(); // Print nothing
gfg(); // Print Saved

输出:

Saved

示例 2:在此示例中,我们尝试调用该函数2 次,但它只会调用 2 次。

// Requiring the lodash library  
const _ = require("lodash"); 
  
// Applying _.after() method
var gfg = _.after(2, function () {
  console.log('Successful');
});
  
gfg(); // Print nothing
gfg(); // Print Successful

输出:

Successful

参考: https://docs-lodash.com/v4/after/