Underscore.js是一个JavaScript库,它提供了许多有用的函数,即使不使用任何内置对象,它们也可以以很大的方式帮助编程,例如映射,过滤器,调用等。
_.chain()函数是JavaScript的Underscore.js库中的内置函数,用于查找包装的对象。此外,在此对象上调用方法将继续返回包装的对象,直到调用该值为止。
用法:
_.chain(obj)
参数:它接受以下指定的单个参数:
- obj:它是陈述的对象。
返回值:此方法返回一个包装的对象。
范例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([99, 3, 4, 6]).push(100));
</script>
</body>
</html>
输出:
[99, 3, 4, 6, 100]
范例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>
var author_article = [
{ author:'Nidhi1352', articles:792 },
{ author:'Nisha95', articles:590 },
{ author:'Rohit01', articles:450 }
];
var experienced = _.chain(author_article)
.sortBy(function (author_article)
{ return author_article.article; })
.map(function (author_article) {
return author_article.author +
' wrote ' + author_article.articles
+ ' articles! ';
})
.first()
.value();
console.log(experienced);
</script>
</body>
</html>
输出:
Nidhi1352 wrote 792 articles!
参考:https://underscorejs.org/#chain
相关用法
- Lodash _.chain()用法及代码示例
- Lodash _.prototype.chain()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Underscore.js _.chain() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。