gpt4 book ai didi

node.js - 为什么示例中 Node 全局上下文 === 'this' 仅有时出现?

转载 作者:太空宇宙 更新时间:2023-11-03 21:57:40 24 4
gpt4 key购买 nike

我有以下 test.js 文件,它发出两行输出,每行测试全局对象和 this 之间的严格相等性。

var c = require("console");

console.log(this === global);

(function () {
console.log(this === global);
})();

当我使用 node.exe test.js 从命令行运行此文件时,我得到以下输出:

false
true

但是,当我从 Node REPL 内部加载 test.js 时,它会提供不同的输出:

true
true

这是在 REPL 中加载脚本的完整记录

PS C:\Programming> node
> .load test.js
.load test.js
> var c = require("console");
undefined
> console.log(this === global);
true
undefined
>
> (function () {
... console.log(this === global);
... })();
true
undefined
>
> .exit

同一脚本的这两个运行场景之间的输出差异的原因是什么?

这两种情况都不会启用严格模式( Node 命令行默认将 strict 设置为 false);该代码不会使用 'use strict'; 调用严格模式。

我在 Windows 10 x64 上使用 Node 5.9.0。

最佳答案

原因是两个环境不同。当您在命令行上执行文件或 require() 文件时,它们会作为 Node 模块加载,并在特殊环境中执行,其中 this === module.exports (尽管您应该在模块中使用 exports/module.exports 而不是 this)。

由于 REPL 的性质/目的,将 REPL 视为 Node 模块是没有意义的,因此 REPL 中的所有代码都只是在同一范围内执行。

关于node.js - 为什么示例中 Node 全局上下文 === 'this' 仅有时出现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36109701/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com