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>
输出:
相关用法
- PHP next()用法及代码示例
- p5.js box()用法及代码示例
- p5.js nf()用法及代码示例
- CSS hsl()用法及代码示例
- d3.js d3.sum()用法及代码示例
- d3.js d3.mean()用法及代码示例
- PHP Ds\Set contains()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js arc()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP key()用法及代码示例
- CSS url()用法及代码示例
- PHP max( )用法及代码示例
- d3.js d3.min()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Underscore.js _.mixin() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。