猿问

如何在 TS 和 TypeORM 中创建泛型函数?

如何在 TS 和 TypeORM 中创建泛型函数?


我有多个这样的功能:


    async getOrderName(id: number): Promise<string> {

        const order = await this.conn.getRepository(Order).findOne(id);

        return `${order.name}`;

    }

    async getServiceName(id: number): Promise<string> {

        const service = await this.conn.getRepository(Service).findOne(id);

        return `${service.name}`;

    }

还有一个……另一个……另一个……


所以,我需要创建一个通用函数来与许多实体一起使用


有人可以告诉我如何创建该功能吗?


四季花海
浏览 145回答 3
3回答

三国纷争

您应该能够利用鸭子类型来概括EntityTargets 的功能:interface NamedThing {&nbsp; &nbsp; name: string}async getName<Entity extends NamedThing>(id: number, target: EntityTarget<Entity>): Promise<string> {&nbsp; &nbsp; const named = await this.conn.getRepository<Entity>(target).findOne(id);&nbsp; &nbsp; return `${named && named.name}`;}// equivalent calls are now `getName(id, Order)`, `getName(id, Service)`, etc.

当年话下

我强烈建议查看&nbsp;https://www.typescriptlang.org/docs/handbook/generics.html如果愿意,您可以传入类型 T(并返回类型 T)。async getServiceName<T>(id: T): Promise<string> {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; const service = await this.conn.getRepository(Service).findOne(id);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return `${service.name}`;&nbsp; &nbsp; &nbsp; &nbsp; }显然,您必须重载 findOne 函数才能获取任意数量的类型 T。或者你可以超级懒惰,在最低级别使用任何关键字。

暮色呼如

您可以使用const&nbsp;a&nbsp;=&nbsp;MyRepositoryName并a作为参数传递给函数
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答