Lodash _.after

2021-09-24 10:12 更新

_.after(n, func)

_.before的反向函數(shù);此方法創(chuàng)建一個函數(shù),當(dāng)他被調(diào)用n或更多次之后將馬上觸發(fā)func 。

添加版本

0.1.0

參數(shù)

  1. n (number): func 方法應(yīng)該在調(diào)用多少次后才執(zhí)行。
  2. func (Function): 用來限定的函數(shù)。

返回

(Function): 返回新的限定函數(shù)。

例子

var saves = ['profile', 'settings']; var done = _.after(saves.length, function() {  console.log('done saving!');});
 _.forEach(saves, function(type) {  asyncSave({ 'type': type, 'complete': done });});
// => Logs 'done saving!' after the two async saves have completed.


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號