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


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


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}

参考:https://underscorejs.org/#create

相关用法


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