码迷,mamicode.com
首页 > Web开发 > 详细

JS之全局变量global

时间:2018-09-04 10:31:11      阅读:6470      评论:0      收藏:0      [点我收藏+]

标签:模块   没有   elf   from   git   rom   common   支持   href   

全局变量

  • 浏览器里面,顶层对象是window,但 Node 和 Web Worker 没有window
  • 浏览器和 Web Worker 里面,self也指向顶层对象,但是 Node 没有self
  • Node 里面,顶层对象是global,但其他环境都不支持。

同一段代码为了能够在各种环境,都能取到顶层对象,现在一般是使用this变量,但是有局限性。

  • 全局环境中,this会返回顶层对象。但是,Node 模块和 ES6 模块中,this返回的是当前模块。
  • 函数里面的this,如果函数不是作为对象的方法运行,而是单纯作为函数运行,this会指向顶层对象。但是,严格模式下,这时this会返回undefined
  • 不管是严格模式,还是普通模式,new Function(‘return this‘)(),总是会返回全局对象。但是,如果浏览器用了CSP(Content Security Policy,内容安全政策),那么evalnew Function这些方法都可能无法使用。

综上所述,很难找到一种方法,可以在所有情况下,都取到顶层对象。下面是两种勉强可以使用的方法。

// 方法一

(typeof window !== ‘undefined‘
   ? window
   : (typeof process === ‘object‘ &&
      typeof require === ‘function‘ &&
      typeof global === ‘object‘)
     ? global
     this);
 
// 方法二
var getGlobal = function () {
  if (typeof self !== ‘undefined‘) { return self; }
  if (typeof window !== ‘undefined‘) { return window; }
  if (typeof global !== ‘undefined‘) { return global; }
  throw new Error(‘unable to locate global object‘);
};
 
现在有一个提案,在语言标准的层面,引入global作为顶层对象。也就是说,在所有环境下,global都是存在的,都可以从它拿到顶层对象。

垫片库system.global模拟了这个提案,可以在所有环境拿到global

// CommonJS 的写法

require(‘system.global/shim‘)();
 
// ES6 模块的写法
import shim from ‘system.global/shim‘; shim();
 
 
 上面代码可以保证各种环境里面,global对象都是存在的。
// CommonJS 的写法
var global = require(‘system.global‘)();
 
// ES6 模块的写法
import getGlobal from ‘system.global‘;
const global = getGlobal();
 
 上面代码将顶层对象放入变量global

JS之全局变量global

标签:模块   没有   elf   from   git   rom   common   支持   href   

原文地址:https://www.cnblogs.com/U5B89/p/9582384.html

(1)
(3)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!