高级 Typescript 泛型教程
问题
假设我们有一个名为 Attributes
的类,它管理不同类型的属性——即 EmployeeAttributes
、ClientAttributes
等。
type EmployeeProps = {
name: string;
salary: number;
};
export class Attributes<T> {
constructor(private data: T) {}
get(key: string): string | number {
return this.data[key];
}
}
const attrs = new Attributes<EmployeeProps>({
name: 'Tom',
salary: 5000,
});
// name 是 string 或 number 类型,因为这是我们硬编码为 get 方法的返回
const name = attrs.get('name');
在上面的例子中,我们创建了一个 Attributes
类的实例,它传入了一个 EmployeeProps
类型的泛型,它具有 name 和 Salary 键,分别是 string 和 number 类型。
然后我们在实例上使用 get
方法并获取 name 属性,但是我们在返回值上获取的类型是字符串或数字,这意味着我们只能在使用类型之前对其进行字符串和数字通用的操作守卫以缩小值的类型。
我们应该能够告诉 typescript name 变量应该是字符串类型,所以在这种情况下我们不必使用类型保护。
我们正在尝试做的是将 get
方法采用的参数限制为姓名或薪水。姓名或薪水是类型 T
中唯一有效的键,这意味着我们应该只根据这些键从数据对象中获取值。
一旦我们将 get
方法的参数约束为类型 T 的键之一,我们应该将 get
方法的返回值指定为与传入的键对应的类型。
因此,如果我们例如调用:
get('name');
T
类型中 name 键对应的类型是 string,这就是 get
方法应该返回的类型。
解决方案 - K extends keyof T 泛型
我们可以在 get
方法上使用泛型,我们指定泛型类型 K 只能是在初始化时传递给类的泛型类型 T 的键之一。
如果 get
方法的参数仅被约束为 T
接口的键之一,即数据类属性的签名,则 get
方法应返回 T[K]
- 从类型中键 K 的类型 T。
type EmployeeProps = {
name: string;
salary: number;
};
export class Attributes<T> {
constructor(private data: T) {}
get<K extends keyof T>(key: K): T[K] {
return this.data[key];
}
}
const attrs = new Attributes<EmployeeProps>({
name: 'Tom',
salary: 5000,
});
// is now of type string
const name = attrs.get('name');
// ERROR: Argument of type '"test"' is not assignable to parameter of type '"name" | "salary"'.
const test = attrs.get('test');
如果我们现在将鼠标悬停在 name
变量上,我们应该会看到它是字符串类型,因为我们已经指定 get
方法返回 T[K]
,这是一个对象查找,就像在 js 中一样 - 它查找键的值 对象 T
中的 K - 在我们的例子中是 EmployeeProps
类型的键名的值,它是字符串。
上述代码段中的要点:
- K 的类型只能是 T 的键之一——在我们的例子中是 name 或 salary
- 换句话说 - 我们只能用 T 的键之一调用 get - name 或 salary
-
对于
get
的返回值,我们说查看键 K 处的类型 T 并返回值。 在我们的例子中,查看键名处的EmployeeProps
类型并返回字符串
如何处理
我们只能这样做,因为在 typescript 中,字符串可以是类型。 例如,字符串“world”可以是“world”类型。
type World = 'world';
function logHello(message: World) {
console.log(`Hello ${message}`);
}
// ERROR: Argument of type '"all"' is not assignable to parameter of type '"world"'.
logHello('all');
logHello('world');
EmployeeProps
接口的键是 name 和 salary 类型的字符串,这允许我们将 get
方法接收的参数限制为特定键。 一旦我们这样做了 - 我们所要做的就是将 get
方法的返回值注释为 EmployeeProps
类型中特定键 K 的查找。
相关文章
在 AngularJs 中设置 Select From Typescript 的默认选项值
发布时间:2023/04/14 浏览次数:78 分类:Angular
-
本教程提供了在 AngularJs 中从 TypeScript 中设置 HTML 标记选择的默认选项的解释性解决方案。
在 Angular 中使用 TypeScript 的 getElementById 替换
发布时间:2023/04/14 浏览次数:153 分类:Angular
-
本教程指南提供了有关使用 TypeScript 在 Angular 中替换 document.getElementById 的简要说明。这也提供了在 Angular 中 getElementById 的最佳方法。
在 TypeScript 中使用 try..catch..finally 处理异常
发布时间:2023/03/19 浏览次数:181 分类:TypeScript
-
本文详细介绍了如何在 TypeScript 中使用 try..catch..finally 进行异常处理,并附有示例。
在 TypeScript 中使用 declare 关键字
发布时间:2023/03/19 浏览次数:97 分类:TypeScript
-
本教程指南通过特定的实现和编码示例深入了解了 TypeScript 中 declare 关键字的用途。
在 TypeScript 中 get 和 set
发布时间:2023/03/19 浏览次数:172 分类:TypeScript
-
本篇文章演示了类的 get 和 set 属性以及如何在 TypeScript 中实现它。
在 TypeScript 中格式化日期和时间
发布时间:2023/03/19 浏览次数:161 分类:TypeScript
-
本教程介绍内置对象 Date() 并讨论在 Typescript 中获取、设置和格式化日期和时间的各种方法。
在 TypeScript 中返回一个 Promise
发布时间:2023/03/19 浏览次数:182 分类:TypeScript
-
本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。
在 TypeScript 中定义函数回调的类型
发布时间:2023/03/19 浏览次数:221 分类:TypeScript
-
本教程说明了在 TypeScript 中为函数回调定义类型的解决方案。为了程序员的方便和方便,实施了不同的编码实践指南。