{ return 1 + 1 } modul-6ren">
gpt4 book ai didi

javascript - 带有构造函数和其他对象的 Module.exports

转载 作者:行者123 更新时间:2023-12-02 23:06:58 25 4
gpt4 key购买 nike

我正在尝试做这样的事情:

let Token = mongoose.model("Token", InToken)

let add = () => {
return 1 + 1
}

module.exports = {
Token,
add
}

每当我这样做时,我都会收到此错误:TypeError: token 不是构造函数

如何将模型与其他对象一起导出?

最佳答案

当您导入模块时

const Something = require('./Something'); // contains the file in your question

您将能够使用new:

const token = new Something.Token()

关于javascript - 带有构造函数和其他对象的 Module.exports,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57546725/

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