gpt4 book ai didi

angular - 如何在 Angular 服务中获取通用类型 T 的名称

转载 作者:行者123 更新时间:2023-12-01 22:09:08 25 4
gpt4 key购买 nike

需要根据传递给该服务的通用类型 T 在 Angular 5 服务中创建一些工厂方法。如何获取泛型类型“T”的名称?

@Injectable()
export class SomeService<T> {

someModel: T;

constructor(protected userService: UserService) {

let user = this.userService.getLocalUser();
let type: new () => T;

console.log(typeof(type)) // returns "undefined"
console.log(type instanceof MyModel) // returns "false"

let model = new T(); // doesn't compile, T refers to a type, but used as a value

// I also tried to initialize type, but compiler says that types are different and can't be assigned

let type: new () => T = {}; // doesn't compile, {} is not assignable to type T
}
}

// This is how this service is supposed to be initialized

class SomeComponent {

constructor(service: SomeService<MyModel>) {
let modelName = this.service.getSomeInfoAboutInternalModel();
}
}

最佳答案

您不能仅基于泛型类型实例化一个类。

我的意思是,如果你想要这个:

function createInstance<T>(): T {...}

这是不可能的,因为它会转换成这样:

function createInstance() {...}

如您所见,它不能以任何方式进行参数化。

最接近你想要的是:

function createInstance<T>(type: new() => T): T {
return new type();
}

然后,如果你有一个带有无参数构造函数的类:

class C1 {
name: string;
constructor() { name = 'my name'; }
}

您现在可以这样做:

createInstance(C1); // returns an object <C1>{ name: 'my name' }

这非常有效,编译器会为您提供正确的类型信息。我使用 new() => T 作为 type 的类型的原因是表明您必须传递一个不带参数且必须返回类型的构造函数T. 类(class)本身就是这样。在这种情况下,如果您有

class C2 {
constructor(private name: string) {}
}

你也是

createInstance(C2);

编译器会抛出一个错误。

但是,您可以概括 createInstance 函数,使其适用于具有任意数量参数的对象:

function createInstance2<T>(type: new (...args) => T, ...args: any[]): T 
{
return new type(...args);
}

现在:

createInstance(C1); // returns <C1>{ name: 'my name'}
createInstance(C2, 'John'); // returns <C2>{name: 'John'}

希望这对你有用。

关于angular - 如何在 Angular 服务中获取通用类型 T 的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49414549/

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