Underscore.js是一個JavaScript庫,提供了許多有用的函數,即使在不使用任何內置對象的情況下,也可以極大地幫助您進行編程,例如映射,過濾,調用等。
_.create()函數是JavaScript的Underscore.js庫中的內置函數,該函數用於創建具有聲明的原型和道具的新對象,作為其自己的屬性(可選地附加)。
用法:
_.create(prototype, props)
參數:該函數接受上述和以下所述的兩個參數:
- prototype:這是要使用的原型。
- props:這是所使用的原型的屬性,可以選擇附加。
返回值:此方法返回一個新對象。
範例1:
Javascript
<!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 }];
// Calling create method with its parameter
var obj = _.create(author_article.prototype,
{ author:"Rahul096" });
console.log(obj);
</script>
</body>
</html>
輸出:
{"author":"Rahul096"}
範例2:
Javascript
<!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 array = [3, 4, 6, 8, 9]
// Calling create method with its parameter
var new_obj = _.create(array.prototype, [10]);
console.log(new_obj);
</script>
</body>
</html>
輸出:
{"0":10}
相關用法
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Underscore.js _.create() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。