他们为什么在javascript中使用命名空间

他们为什么在javascript中使用命名空间

本文介绍了他们为什么在javascript中使用命名空间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在某些使用indexeddb的示例中,我看到他们使用名称空间: http://www.html5rocks.com/zh-CN/tutorials/indexeddb/todo/ http://greenido.wordpress.com/2011/06/24/how-to-use-indexdb-code-and-example/

I saw that they use namespace in some example of using indexeddb: http://www.html5rocks.com/en/tutorials/indexeddb/todo/ or http://greenido.wordpress.com/2011/06/24/how-to-use-indexdb-code-and-example/

这样做有什么真正的好处?仅仅是为了组织相关对象吗?

Are there any real benefit of doing so? Is it just for organize the related object?

推荐答案

简单(AFAIK),以防止名称冲突和污染父名称空间.

Simply (AFAIK), to prevent name collisions and polluting parent namespaces.

这篇关于他们为什么在javascript中使用命名空间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 10:27