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


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


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

_.tap()函数是JavaScript的Underscore.js库中的内置函数,该函数用于调用具有指定对象的拦截器。此外,此方法的主要目的是对方法链进行“tap into”,以便它可以对中间结果执行链内操作。

用法:

_.tap(object, interceptor)

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

  • object:这是陈述的对象。
  • interceptor:这是要调用的函数。

返回值:此方法返回对象。



范例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> 
        console.log(_.chain([4, 5, 6, 7]) 
        .tap(function (array) { 
            array.push(8); 
        })) 
            .value();  
    </script> 
</body> 
  
</html>

输出:

[4, 5, 6, 7, 8]

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        console.log(_.chain(['a', 'b', 'c', 'd']) 
        .tap(function (array) { 
            array.pop(); 
        })) 
            .value();  
    </script> 
</body> 
  
</html>

输出:

["a", "b", "c"]

范例3:

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        console.log(_.chain([1, 2, 3, 4, 5, 6, 7, 8, 9]) 
            .filter(function (number)  
                { return number % 3 == 0; }) 
            .tap(alert) 
            .map(function (number)  
                { return number * number })) 
            .value(); 
    </script> 
</body> 
  
</html>

输出:

3, 6, 9   // Result of filter function
[9, 36, 81] // After tap method map function is performed

在此,将映射函数应用于通过滤波方法获得的中间结果。

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




相关用法


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