JavaScript Patterns 2.5 (Not) Augmenting Build-in Prototypes
2014-05-20 13:36 小郝(Kaibo Hao) 阅读(342) 评论(0) 编辑 收藏 举报Disadvantage
- Other developers using your code will probably expect the built-in JavaScript methods to work consistently and will not expect your additions.
- Properties you add to the prototype may show up in loops that don't use hasOwnProperty(), so they can create confusion.
Augment build-in prototypes under all of the conditions below:
- It's expected that future ECMAScript versions or JavaScript implementations will implement this functionality as a built-in method consistently. For example, you can add methods described in ECMAScript 5 while waiting for the browsers to catch up. In this case you're just defining the useful methods ahead of time.
- You check if your custom property or method doesn't exist already—maybe already implemented somewhere else in the code or already part of the JavaScript engine of one of the browsers you support.
-
You clearly document and communicate the change with the team.
If these three conditions are met, you can proceed with the custom addition to the prototype, following this pattern:
if (typeof Object.protoype.myMethod !== "function") { Object.protoype.myMethod = function () { // implementation... }; }
作者:小郝
出处:http://www.cnblogs.com/haokaibo/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处:http://www.cnblogs.com/haokaibo/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。