当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.after()用法及代码示例


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

用法:

_.after(n, func)

参数:该方法接受上述和以下所述的两个参数:

  • n:此参数保留数字n,该数字定义在调用func之前的调用次数。
  • 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:在此示例中,我们尝试两次调用该函数,但仅第二次调用。

// 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/

相关用法


注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 Lodash _.after() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。