gpt4 book ai didi

javascript - node.js 文件中绑定(bind)的函数是什么

转载 作者:太空宇宙 更新时间:2023-11-04 02:04:32 26 4
gpt4 key购买 nike

如node.js文件中的以下代码:

function test() {
console.log(typeof this)
}

代码结果是对象

我知道如果代码在浏览器中运行,这个函数就会绑定(bind)到默认的窗口对象。显然结果是object

但是node.js文件中绑定(bind)的函数是什么?

提前致谢!

最佳答案

当不使用严格模式时,this将是所有模块共享的全局对象。

node js1.js 应在以下示例中打印 true:

// js1.js
const logT2 = require("./js2").logT2;

function logT1() {
return this;
}
const thisInT1 = logT1();
const thisInT2 = logT2();
console.log(thisInT1 === thisInT2 && typeof thisInT1 === "object");

 

// js2.js
function logT2() {
return this;
}

exports.logT2 = logT2;

关于javascript - node.js 文件中绑定(bind)的函数是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44815576/

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