5

在与 Inversify 相关的实施方面需要帮助。我正在创建一个从节点扩展 EventEmitter 的类。当我尝试使用 inversify 时,它说 EventEmitter 不可注入。以下是示例代码

//界面

export interface ISubscriber {
Connect(callback: Function);
on(event: string, listener: Function): this;
emit(event: string, ...args: any[]): boolean;
}

//班级

import {EventEmitter} from 'events';


@injectable()
class Subscriber extends EventEmitter implements ISubscriber {
logProvider: SCLogging.ILogger;
public constructor(
    @inject(TYPES.ILogger) logProvider: SCLogging.ILogger,
    @inject(TYPES.IConfig) config: IConfig
) {
    super();
    //Some Implementation
}

public Connect(callback) {
//Some Implementation
}

public on(event: string, listener: Function): this {
    super.on(event, listener);
    return this;
}

public emit(event: string, ...args: any[]): boolean {
    return super.emit(event, ...args);
}
}
export { ISubscriber, Subscriber }

//定义绑定

kernel.bind<SCLogging.ILogger>(TYPES.ILogger).to(Logger);
kernel.bind<IConfig>(TYPES.IConfig).to(Config);
kernel.bind<ISubscriber>(TYPES.ISubscriber).to(Subscriber);

我收到错误

Error: Missing required @injectable annotation in: EventEmitter.
4

2 回答 2

6

在 Github 上的 InversifyJS 问题上已经回答了一个非常相似的问题:

您可以使用 decorate 函数调用装饰器:

import { decorate, injectable } from "inversify";
decorate(injectable(), ClassName)

查看https://github.com/inversify/InversifyJS/blob/master/wiki/basic_js_example.md了解更多信息。

有关更多信息,请参阅 Github 上的问题。

于 2016-07-31T11:10:54.977 回答
3

在容器选项中设置skipBaseClassChecks: true会禁用 inversify 的这个“功能”。

有关更多详细信息,请参阅此 PR https://github.com/inversify/InversifyJS/pull/841

于 2020-08-27T23:47:24.640 回答