angularjs – 我应该使用Angular.copy()或_.clone()?

我正在一个项目,有Angular和Underscore作为依赖。

当我需要创建一个对象的副本,根据我的心情,当时,我可能使用angular.copy()或_.clone()

我发现这些方法之一可能比另一个更快,可靠/鲁棒。

是否有任何已知的问题,这些功能,使它比其他更好或更差的使用,假设两个库已经包括

关于你的问题:angular.copy和_.clone是不同的。这不是一个问题,哪个更好,它是关于你需要什么@凯文B在评论中说。

另一方面,angular.extend()是一个浅拷贝类似于_.clone

Angular.copy vs Angular.extend

性能明智,我不知道哪个更好,但为了意见,我反对包括库到任何角度应用程序的全局范围(下划线),因为通常这些东西写作angular modules. angular.copy / angular .extend在这种情况下会胜出。

浅/深复制:

Its very simple that if the object has only primitive fields,then obvIoUsly you will go for shallow copy but if the object has references to other objects,then based on the requiement,shallow copy or deep copy should be chosen. What I mean here is,if the references are not modified anytime,then there is no point in going for deep copy. You can just opt shallow copy. But if the references are modified often,then you need to go for deep copy. Again there is no hard and fast rule,it all depends on the requirement.

Source

相关文章

ANGULAR.JS:NG-SELECTANDNG-OPTIONSPS:其实看英文文档比看中...
AngularJS中使用Chart.js制折线图与饼图实例  Chart.js 是...
IE浏览器兼容性后续前言 继续尝试解决IE浏览器兼容性问题,...
Angular实现下拉菜单多选写这篇文章时,引用文章地址如下:h...
在AngularJS应用中集成科大讯飞语音输入功能前言 根据项目...
Angular数据更新不及时问题探讨前言 在修复控制角标正确变...