javascript - 类型错误 : Class constructor Client cannot be invoked without 'new'

标签 javascript node.js typescript ts-node

我正在开发一个使用 ts-node(脚本模式)、typescript 和 discord.js 的 discord 机器人框架。测试核心客户端类时出现此错误:


C:\Users\thedi\Documents\coding\JS-TS\discord-bot\src\struct\Client.ts:13
        super()
        ^
TypeError: Class constructor Client cannot be invoked without 'new'
    at new DigsClient (C:\Users\thedi\Documents\coding\JS-TS\discord-bot\src\struct\Client.ts:13:9)
    at Object.<anonymous> (C:\Users\thedi\Documents\coding\JS-TS\discord-bot\test\index.ts:6:16)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Module.m._compile (C:\Users\thedi\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:1056:23)
    at Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Object.require.extensions.<computed> [as .ts] (C:\Users\thedi\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:1059:12)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
    at main (C:\Users\thedi\AppData\Roaming\npm\node_modules\ts-node\src\bin.ts:198:14)

围绕 StackOverflow 的同一个问题有很多答案,大多数建议将 tsconfig 中的“目标”值设置为“es6”或更高。我的问题是该解决方案对我不起作用。

这是我的代码:

// src/struct/Client.ts

import { Client, ClientOptions, Snowflake } from 'discord.js';
import * as discord from 'discord.js';

interface DigsClientOptions {
    ownerID?: Snowflake | Array<Snowflake>;
}

class DigsClient extends Client {
    public constructor(
        options?: DigsClientOptions,
        discordOptions?: ClientOptions
    ) {
        super();

        this.ownerID = options.ownerID;

        return this;
    }

    ownerID: Snowflake | Array<Snowflake>;
}

export { DigsClient, DigsClientOptions };

// test/index.ts

import { DigsClient } from '../src/index';
import { config } from 'dotenv';
config();
const token = process.env.TOKEN;

const client = new DigsClient({ ownerID: '585813838490894346' });

client.login(token);

//.tsconfig.json

{
    "compilerOptions": {
        "target": "es6",
        "module": "es6"
    },
    "exclude": ["node_modules"]
}


此错误发生在使用 ts-nodets-node-script 时,我知道它检测到 tsconfig,因为我没有收到使用 es6 模块的错误.

希望大家帮忙!

最佳答案

由于 NodeJS 遵循 CommonJS 模块系统,我认为原因是你应该设置 moduleCommonJS .你可以保留 targetES6到目前为止,它还没有中断。因为 AFAIK,Node 和现代浏览器支持 ES6语法。

但是,target之间有什么区别?和 module . target是您针对的整个语法,而 module仅适用于导入其他模块的方式。 而 NodeJS 仅支持 CommonJS 直到版本 14.x。所以,推荐使用CommonJS在 NodeJS Typescript 项目上。


就像我说的,这就是您如何导入其他模块。 CommonJS 是一个模块系统,它允许您导入其他模块,例如 <script>。 html上的标签。这是 CommonJS 示例。

const foobar = require('./foobar.js');
foobar();

NodeJS 使用这个模块系统,因为 Javascript 还没有。

但是,EcmaScript(Javascript 标准)引入了 ESModule,它是 CommonJS 的标准化替代品。 ESModule 是 EcmaScript 标准语法的一部分。它的语法看起来像这样。

import foobar from './foobar.js';
foobar();

所以,你使用的是 ESModule,但 NodeJS 只理解 CommonJS。这就是为什么我们需要将 ES6 编译为 CommonJS,以便 NodeJS 能够理解。


但是现在,NodeJS 支持 13.x 或 14.x 上的 ESModule(我不太确定)。但 NodeJS 仍将默认使用 CommonJS。所以,如果你想使用它,你需要告诉 NodeJS 你的包正在使用 ESModule。

有几个选项可以做到这一点。首先,使用 .mjs扩展名,其次是在 package.json 上将其更改为默认值.

{
  "name": "my-epic-package",
  "version": "1.0.0",
  "type": "module", // here
  ...
}

因此,启用类型模块后,您可以保留 tsconfig.json使用 module .

关于javascript - 类型错误 : Class constructor Client cannot be invoked without 'new' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66566633/

相关文章:

javascript - 等到所有回调都被调用

javascript - 在 nodeJs socket.io on 方法在 webstorm 中未解决

typescript - 通过模块扩充向现有 TypeScript 接口(interface)添加属性无效

Angular 单元测试 : TypeError: Cannot read property 'root' of undefined

javascript - 如何在 entryComponents 另一个模块中使用模块中的组件?

javascript - 为什么 `this` 不等于 `Object` ,为什么属性是 `undefined` ?

javascript - Node js http服务器接受POST并接受JSON

mysql - 检查表a是否存在表b中的主键

javascript - 如何在docx文件nodejs的第一页附加图像?

javascript - 如何计算对象属性值并在动态按钮中显示单独的值并将单击事件分配给它们