gpt4 book ai didi

javascript - TypeError : Cannot set property of undefined in module. 导出

转载 作者:搜寻专家 更新时间:2023-11-01 00:23:08 25 4
gpt4 key购买 nike

'use strict';
module.exports = function () {
this.myVar = 'example';
console.log(this.myVar);
};

我得到错误:

/home/karl/mymodule.js:3
this.myVar = 'example';
^

TypeError: Cannot set property 'myVar' of undefined

最佳答案

在严格模式下,thisundefined。但在非严格模式下,this 只是指向 GLOBAL。所以在这里你试图将一些东西设置为 undefined

您打算将 myVar 附加到哪里?在你的模块上?或者在 GLOBAL 上?如果它在 GLOBAL 上(这实际上是个坏主意),请使用 GLOBAL.myVarglobal.myVar。如果它在您的模块上,您可以执行 module.exports.myVar = 'example';

关于javascript - TypeError : Cannot set property of undefined in module. 导出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35270387/

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