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


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


Underscore.js是一个JavaScript库,它提供了许多有用的函数,即使不使用任何内置对象,它们也可以以很大的方式帮助编程,例如映射,过滤器,调用等。

_.after()函数是JavaScript的Underscore.js库中的内置函数,用于创建函数的包装,该包装一开始不执行任何操作,但从指定的计数开始,它将调用指定的函数。此外,它在异步响应分组中很有用,因为您需要确定所有异步调用在结束之前是否已经结束。

用法:

_.after(count, function)

参数:它接受以下指定的两个参数:

  • count:它是计数的数量,之后将调用所述函数。
  • function:它是规定的函数。

返回值:此方法返回调用函数的计数。



范例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        show = () => { 
            console.log("GeeksforGeeks") 
        } 
        console.log(`Show function will run for 5 times:`) 
  
        // Calling after function 
        func = _.after(3, show); 
        func(); 
        func(); 
        func(); 
        func(); 
        func(); 
        func(); 
        func();  
    </script> 
</body> 
  
</html>

输出:

Show function will run for 5 times:
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <button id="button">button</button> 
    <script> 
        show = () => { 
            console.log("GeeksforGeeks") 
        } 
  
        // Calling after function 
        func = _.after(3, show); 
        let button = document.querySelector("#button"); 
        let Run = () => { 
            console.log(`Show function runs for 8 times:`) 
            for (let i = 0; i < 10; i++) { 
                func(); 
            } 
        } 
        button.addEventListener("click", Run)   
    </script> 
</body> 
  
</html>

输出:

button

Show function runs for 7 times:
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks
 GeeksforGeeks

在这里,您需要单击按钮以查看输出。

参考:https://underscorejs.org/#after




相关用法


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