node.js全局变量?

我在这里问:node.js需要继承?

并被告知我可以通过忽略var来将变量设置为全局范围。

这对我不起作用。

即:

_ = require('underscore');

不要在必需的文件中使用_。 我可以用express的app.set来设置它,但它可以在其他地方使用。

有人可以证实,这是应该工作? 谢谢。


global._ = require('underscore')


在节点中,可以通过“global”或“GLOBAL”对象设置全局变量:

GLOBAL._ = require('underscore'); // but you "shouldn't" do this! (see note below)

或更有用...

GLOBAL.window = GLOBAL;  // like in the browser

从节点源中,您可以看到它们彼此是别名:

node-v0.6.6/src/node.js:
28:     global = this;
128:    global.GLOBAL = global;

在上面的代码中,“this”是全局上下文。 使用commonJS模块系统(使用哪个节点),模块内部的“this”对象(即“您的代码”)不是全局上下文。 为了证明这一点,请参阅下文,我将“this”对象和巨型“GLOBAL”对象分开。

console.log("nTHIS:");
console.log(this);
console.log("nGLOBAL:");
console.log(global);

/* outputs ...

THIS:
{}

GLOBAL:
{ ArrayBuffer: [Function: ArrayBuffer],
  Int8Array: { [Function] BYTES_PER_ELEMENT: 1 },
  Uint8Array: { [Function] BYTES_PER_ELEMENT: 1 },
  Int16Array: { [Function] BYTES_PER_ELEMENT: 2 },
  Uint16Array: { [Function] BYTES_PER_ELEMENT: 2 },
  Int32Array: { [Function] BYTES_PER_ELEMENT: 4 },
  Uint32Array: { [Function] BYTES_PER_ELEMENT: 4 },
  Float32Array: { [Function] BYTES_PER_ELEMENT: 4 },
  Float64Array: { [Function] BYTES_PER_ELEMENT: 8 },
  DataView: [Function: DataView],
  global: [Circular],
  process: 
   { EventEmitter: [Function: EventEmitter],
     title: 'node',
     assert: [Function],
     version: 'v0.6.5',
     _tickCallback: [Function],
     moduleLoadList: 
      [ 'Binding evals',
        'Binding natives',
        'NativeModule events',
        'NativeModule buffer',
        'Binding buffer',
        'NativeModule assert',
        'NativeModule util',
        'NativeModule path',
        'NativeModule module',
        'NativeModule fs',
        'Binding fs',
        'Binding constants',
        'NativeModule stream',
        'NativeModule console',
        'Binding tty_wrap',
        'NativeModule tty',
        'NativeModule net',
        'NativeModule timers',
        'Binding timer_wrap',
        'NativeModule _linklist' ],
     versions: 
      { node: '0.6.5',
        v8: '3.6.6.11',
        ares: '1.7.5-DEV',
        uv: '0.6',
        openssl: '0.9.8n' },
     nextTick: [Function],
     stdout: [Getter],
     arch: 'x64',
     stderr: [Getter],
     platform: 'darwin',
     argv: [ 'node', '/workspace/zd/zgap/darwin-js/index.js' ],
     stdin: [Getter],
     env: 
      { TERM_PROGRAM: 'iTerm.app',
        'COM_GOOGLE_CHROME_FRAMEWORK_SERVICE_PROCESS/USERS/DDOPSON/LIBRARY/APPLICATION_SUPPORT/GOOGLE/CHROME_SOCKET': '/tmp/launch-nNl1vo/ServiceProcessSocket',
        TERM: 'xterm',
        SHELL: '/bin/bash',
        TMPDIR: '/var/folders/2h/2hQmtmXlFT4yVGtr5DBpdl9LAiQ/-Tmp-/',
        Apple_PubSub_Socket_Render: '/tmp/launch-9Ga0PT/Render',
        USER: 'ddopson',
        COMMAND_MODE: 'unix2003',
        SSH_AUTH_SOCK: '/tmp/launch-sD905b/Listeners',
        __CF_USER_TEXT_ENCODING: '0x12D732E7:0:0',
        PATH: '/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:~/bin:/usr/X11/bin',
        PWD: '/workspace/zd/zgap/darwin-js',
        LANG: 'en_US.UTF-8',
        ITERM_PROFILE: 'Default',
        SHLVL: '1',
        COLORFGBG: '7;0',
        HOME: '/Users/ddopson',
        ITERM_SESSION_ID: 'w0t0p0',
        LOGNAME: 'ddopson',
        DISPLAY: '/tmp/launch-l9RQXI/org.x:0',
        OLDPWD: '/workspace/zd/zgap/darwin-js/external',
        _: './index.js' },
     openStdin: [Function],
     exit: [Function],
     pid: 10321,
     features: 
      { debug: false,
        uv: true,
        ipv6: true,
        tls_npn: false,
        tls_sni: true,
        tls: true },
     kill: [Function],
     execPath: '/usr/local/bin/node',
     addListener: [Function],
     _needTickCallback: [Function],
     on: [Function],
     removeListener: [Function],
     reallyExit: [Function],
     chdir: [Function],
     debug: [Function],
     error: [Function],
     cwd: [Function],
     watchFile: [Function],
     umask: [Function],
     getuid: [Function],
     unwatchFile: [Function],
     mixin: [Function],
     setuid: [Function],
     setgid: [Function],
     createChildProcess: [Function],
     getgid: [Function],
     inherits: [Function],
     _kill: [Function],
     _byteLength: [Function],
     mainModule: 
      { id: '.',
        exports: {},
        parent: null,
        filename: '/workspace/zd/zgap/darwin-js/index.js',
        loaded: false,
        exited: false,
        children: [],
        paths: [Object] },
     _debugProcess: [Function],
     dlopen: [Function],
     uptime: [Function],
     memoryUsage: [Function],
     uvCounters: [Function],
     binding: [Function] },
  GLOBAL: [Circular],
  root: [Circular],
  Buffer: 
   { [Function: Buffer]
     poolSize: 8192,
     isBuffer: [Function: isBuffer],
     byteLength: [Function],
     _charsWritten: 8 },
  setTimeout: [Function],
  setInterval: [Function],
  clearTimeout: [Function],
  clearInterval: [Function],
  console: [Getter],
  window: [Circular],
  navigator: {} }
*/

**注意:关于设置“GLOBAL._”,一般你应该做var _ = require('underscore'); 。 是的,你在每个使用下划线的文件中都这样做,就像你在Java中import com.foo.bar; 。 这使得更容易找出你的代码正在做什么,因为文件之间的联系是“明确的”。 温和的讨厌,但是一件好事。 ....这是讲道。

每条规则都有例外。 我恰好有一个例子需要设置“GLOBAL._”。 我正在创建一个定义“配置”文件的系统,这些文件基本上是JSON,但是“用JS编写”允许更多的灵活性。 这样的配置文件没有'require'语句,但我希望它们可以访问下划线(ENTIRE系统以下划线和下划线模板为依据),因此在评估“配置”之前,我会设置“GLOBAL._”。 所以,对于每一条规则,都有一个例外。 但你最好有一个很好的理由,而不仅仅是“我厌倦了打字''要求',所以我想打破常规”。


当项目变大时,使用GLOBAL关键字的其他解决方案是维护/可读性(+名称空间污染和错误)的噩梦。 我多次看到这个错误,并且有修复它的麻烦。

使用JS文件,然后使用模块导出。

例:

globals.js

var Globals = {
    'domain':'www.MrGlobal.com';
}

module.exports = Globals;

那么如果你想使用这些,请使用require。

var globals = require('globals'); //<< globals.js path
globals.domain //<< Domain.
链接地址: http://www.djcxy.com/p/95023.html

上一篇: node.js global variables?

下一篇: Not defining the type of variable (Automatic global variables)