gpt4 book ai didi

javascript - 如何运行 module.exports 中的属性?

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

我需要在 x 属性中运行 y,但出现错误,请帮忙。

lang-js:

module.exports = {
x: () => {
this.y("hello world");
},

y: (text) => {
console.log(text);
},
};

附注我是菜鸟)

最佳答案

这个有效:

module.exports = {
x: () => {
module.exports.y("hello world");
},

y: (text) => {
console.log(text);
},
};

这也有效:

module.exports = {
x: function () {
this.y("hello world");
},

y: (text) => {
console.log(text);
},
};

注意第二个示例:它不是箭头函数。箭头函数对于 this

的行为有所不同

关于javascript - 如何运行 module.exports 中的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60412923/

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