How can I create an empty namespace object without overwriting another object with the same name?

我只是一个虾纸丫 提交于 2019-12-20 04:55:39

问题


I have been studying as much as I can about the Module Pattern suggested by the Yahoo YUI Blog.

I've noticed that the YUI offers the ability to create a new empty namespace object without overwriting an existing one of the same name like so:

YAHOO.namespace("myProject");

Which can then be called and used with YAHOO.myProject

(Reminder: if YAHOO.myProject already exists it is not overwritten)

How can I achieve a similar effect using plain javascript, and without using the YUI?

Please explain with as much detail as possible.

The full YUI blog article where this is done can be found here.

As I am learning and srengthening my javascript knowledge and skills, I am trying to create my own personal javascript library (even if I never need to use it)


回答1:


In your example, it could work like this:

if (!YAHOO.myProject) {
    YAHOO.myProject = {};
}
YAHOO.myProject.whatever = true;

or using your own parent module name:

var myModule = myModule || {};  // make sure parent is defined without overwriting
if (!myModule.myProject) {
    myModule.myProject = {};
}
myModule.myProject.whatever = true;

Or define your own namespace function:

function myNamespace(item) {
    if (!myModule[item]) {
        myModule[item] = {};
    }
}

myNamespace("myProject");
myNamespace.myProject.whatever = true;



回答2:


Edit Just realized I'm not directly answering your question. Sorry! However hopefully this will help you understand some alternate techniques.

This is a technique I use from time to time, such as when I want to add a property or function once and not allow it to be overwritten later.

    var module = new function(){

        var modules = {}; //internal module cache

        return function(name, module){
            //return all modules
            if( !name ) return modules;

            //return specific module
            if( modules[name] ) return modules[name];

            //return the module and store it
            return modules[name] = module;
        }

    }

So you can use it like so:

//will store this since it doesn't exist
module('test', 'foo'); //Since 'test' doesn't exist on the internal 'modules' variable, it sets this property with the value of 'foo'

module('test'); // Since we aren't passing a 2nd parameter, it returns the value of 'test' on the internal 'modules' variable

module('test', 'bar'); //We are attempting to change the value of 'test' to 'bar', but since 'test' already equals 'foo', it returns 'foo' instead.

module(); // { 'test': 'foo' } //Here we aren't passing any parameters, so it just returns the entire internal 'modules' variable. 

The key thing to look at is that we're using 'new function()'. This is done at assignment, because we really want 'module' to be the internal function, not the outer. But in order to create a closure for the internal 'var modules' variable, the outer function has to execute on assignment.

Also notice that you could write the outer function to be self executing too:

var module = function(){
    var modules = {};
    //other stuff
}();



回答3:


Q. How can I create an empty namespace object without overwriting another object with the same name?

You can't. By definition the same name can't refer to both your new empty object and an existing object.

If you mean "How can I check create an empty namespace object only if it doesn't already exist, otherwise I want to add to the existing one", then you just do this:

if (!YAHOO.myProject)
   YAHOO.myProject = {};

// or you may see this variation:
YAHOO.myProject = YAHOO.myProject || {};

I don't like the latter but it is used frequently to achieve the same effect as a plain if statement.

To take this general principle much further have a look at this article: http://www.adequatelygood.com/2010/3/JavaScript-Module-Pattern-In-Depth

UPDATE: According to the YUI API documentation for YAHOO.namespace(), the method "Returns the namespace specified and creates it if it doesn't exist" - which you'll note is much less ambiguous than the wording of the blog you were reading, and pretty much backs up what I already said...



来源:https://stackoverflow.com/questions/9425943/how-can-i-create-an-empty-namespace-object-without-overwriting-another-object-wi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!