1

我将所有代码都放在 NS 中,类似于 jQuery 的结构。我有一些 NS 全局变量,我想将它们包含在内,然后像这样访问 -> Global.variable_name

下面是我的做法。这是好习惯吗?有没有更好的方法可以做到这一点,我不必打电话var Global = new GlobalMaker()

我将所有大写字母用于全局常量。

var NS = ( function ( window, undefined ) { /* all my code is here */ } )( )

/** (including this code)
 *GlobalMaker
 */

var GlobalMaker = function()
{
    this.tag_array = [];
    this.current_tag;
    this.validate_input_on;
    this.JSON_ON = 1;                              // selector between JSON and LON
    this.GATEWAY = 'class.ControlEntry.php';       // for Ajax calls
    this.PICTURES = '../pictures/';                // for composing tweets
    this.PASS = 0;
    this.FAIL = 1;
    this.NOTDEFINED = 2;
};
var Global = new GlobalMaker();

/**
 *Global 
 */

var Global = 
{
    tag_array:          [],
    current_tag:        0,
    validate_input_on:  0,
    JSON_ON:            1,                             
    GATEWAY:            'class.ControlEntry.php',       
    PICTURES:           '../pictures/',                
    PASS:               0,
    FAIL:               1,
    NOTDEFINED:         2
}
4

1 回答 1

2

这是等效的,不使用构造函数:

var Global = {
    tag_array: [],
    // current_tag, // huh?
    // validate_input_on, // huh?
    JSON_ON: 1,
    GATEWAY: 'class.ControlEntry.php',
    PICTURES: '../pictures/',
    PASS: 0,
    FAIL: 1,
    NOTDEFINED: 2
};

但我不明白后两个没有初始化的声明。

但是请注意,如果您按照上面的说明执行此操作,则此 Global 对象仅在该外部Arc函数表达式中可用。它不是真正的全球性的。另请注意,' global'(小写)的使用很常见;你可能想考虑一个不同的变量名(也许是' constants'?)

于 2012-04-09T17:17:05.107 回答