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


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


Underscore.js是一个JavaScript库,它使对数组,字符串,对象的操作更加容易和方便。 _.mixin()函数用于添加其他函数,并将全局下划线对象扩展为某些特殊的实用程序函数。

在浏览器中使用和使用下划线函数之前,必须先链接下划线CDN。链接underscore.js CDN时“_”作为全局变量附加到浏览器。

用法:

_.mixin( object )

参数:此函数接受单个参数,即对象。

返回值:



范例1:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
  
        // Function to be binded with 
        // the global "_" object 
        function stringtoArray(str) { 
  
            // Split the string to array 
            return str.split(""); 
        } 
        _.mixin({ 
  
            // Sta is a variable acronym 
            // for string to array 
            sta:stringtoArray 
        }) 
  
        let str = "geeks for geeks"; 
        let arr = _.sta(str); 
  
        console.log(`string is:${str}`) 
        console.log( 
            `array formed from string is:`, arr); 
    </script> 
</body> 
  
</html>

输出:

范例2:如果没有参数传递给随机函数。

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js"> 
    </script> 
</head> 
  
<body> 
    <script> 
        _.mixin({ 
  
            // Substring function that takes string 
            // starting index and end index 
            substring:(str, s, l) => { 
                return str.split("").splice(s, l).join(""); 
            } 
        }) 
        let str = "geeks for geeks"; 
        let substr = _.substring(str, 9, 6); 
  
        // Print original string 
        console.log(`string is:${str}`) 
  
        // Print substring 
        console.log( 
            `substring formed from string is:`, substr); 
    </script> 
</body> 
  
</html>

输出:




相关用法


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