dojo.mixin()和dojo.extend()之间的区别?

前端之家收集整理的这篇文章主要介绍了dojo.mixin()和dojo.extend()之间的区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Dojo Toolkit的新手,今天我遇到了主题dojo.mixin()和dojo.extend().
我想两者都习惯于从另一个物体获取一个物体的属性.

谁能解释一下dojo.mixin()和dojo.extend()之间的区别?

编辑:在阅读Dojo文档后,我很清楚dojo.extend()用于处理对象的原型.

解决方法

dojo docs

Mixin combines two objects from right to left,overwriting the left-most object,and returning the newly mixed object for use. mixin() is very similar to extend() but only works on objects,whereas extend explicitly extends an object’s prototype.

原文链接:https://www.f2er.com/dojo/730029.html

猜你在找的Dojo相关文章