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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。