不太明白里面的typeof process === 'object' 和 typeof require === 'function'和global === 'object',并且为什么他们全等就能证明是global对象typeof self 是什么意思呢?为什么他们能实现一样的效果?该例子来自ruan大神//该函数证明获取到顶层对象(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');};
1 回答
胡说叔叔
TA贡献1804条经验 获得超8个赞
typeof process === 'object' && typeof require === 'function' && typeof global === 'object'
如果为true,且不存在window
对象时可以认为在node环境中,node的全局对象就是global
等价于浏览器中的window
对象。这个是node的定义,不太好解释原因了,如果说原因的话就是开发node时就这么起的变量名字吧(笑)self
(window.self) 返回window
的只读引用,即为一个顶层对象,所以typeof self !== 'undefined'
时,可以认为在浏览器环境下获取到了顶层对象的一个只读引用typeof global !== 'undefined'
这个就是获取的node环境下的顶层对象,观察这两个函数,其作用都是获取顶层对象,一般来说js较多用到的地方是浏览器端(前端)和node端(后台),winJS这方面不太了解,毕竟还没用过win10系统(我承认我是懒得换),猜测winJS的顶层对象应该也是window,如有错误请大家指正。
添加回答
举报
0/150
提交
取消