Underscore.js _.after()函数
Underscore.js是一个 JavaScript 库,它提供了许多有用的函数,即使不使用任何内置对象,也可以在很大程度上帮助编程,如地图、过滤器、调用等。
_.after()函数是 JavaScript 的 Underscore.js 库中的一个内置函数,用于创建函数的包装器,该函数在开始时不做任何事情,但从规定的计数开始调用规定的函数。此外,它在一组异步响应中很有用,因为您需要确定所有异步调用在之前是否已经结束。
句法:
_.after(count, function)
参数:它接受下面指定的两个参数:
- count:这是调用指定函数的计数次数。
- 函数:这是规定的函数。
返回值:此方法返回被调用函数的计数。
示例 1:
输出:
Show function will run for 5 times:
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
示例 2:
输出:
button
Show function runs for 7 times:
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
GeeksforGeeks
在这里,您需要单击按钮才能查看输出。
参考: https://underscorejs.org/#after