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
相关用法
- Lodash _.method()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.find()用法及代码示例
注:本文由纯净天空筛选整理自skyridetim大神的英文原创作品 Lodash _.after() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。