本文是关于 TypeScript 中的 type assertions 的,它与其他语言中的类型强制转换有相似之处,并通过 as 运算符执行。
成都创新互联公司专注于涵江企业网站建设,响应式网站,商城网站建设。涵江网站建设公司,为涵江等地区提供建站服务。全流程按需策划,专业设计,全程项目跟踪,成都创新互联公司专业和态度为您提供的服务
类型断言使我们可以覆盖 TypeScript 为存储位置计算的静态类型,这对于解决类型系统的限制很有用。
类型断言与其他语言中的类型强制转换有相似之处,但是它们不会引发异常,并且在运行时也不做任何事情(它们确实会静态执行一些少量的检查)。
- const data: object = ['a', 'b', 'c']; // (A)
- // @ts-ignore: Property 'length' does not exist on type 'object'.
- data.length; // (B)
- assert.equal(
- (data as Array
).length, 3); // (C)
类型断言是不得已的方法,应尽可能的避免。他们(暂时)删除了静态类型系统为我们提供的安全网。
注意,在 A 行中,我们还覆盖了 TypeScript 的静态类型,不过是通过类型注释完成的。这种覆盖方式比类型声明要安全得多,因为你可以做的事情少得多。TypeScript 的类型必须能够分配给注释的类型。
(1) 类型断言的替代语法
TypeScript 对于类型断言有另一种“尖括号”语法:
>data
该语法已经过时,并且与 React JSX 代码(在 .tsx 文件中)不兼容。
(2) 示例:声明一个接口
为了访问任意对象 obj 的属性 .name,我们暂时将 obj 的静态类型更改为 Named(A行和B行)。
- interface Named {
- name: string;
- }
- function getName(obj: object): string {
- if (typeof (obj as Named).name === 'string') { // (A)
- return (obj as Named).name; // (B)
- }
- return '(Unnamed)';
- }
(3) 示例:声明索引签名
在以下代码中,我们在行 A 用了类型断言 as Dict ,以便可以访问其推断类型为 object 的值的属性。也就是说,用静态类型 Dict 覆盖了推断的静态类型 object。
- type Dict = {[k:string]: any};
- function getPropertyValue(dict: unknown, key: string): any {
- if (typeof dict === 'object' && dict !== null && key in dict) {
- // %inferred-type: object
- dict;
- // @ ts-ignore:元素隐式具有“any”类型,因为
- // 类型'string'的表达式不能用于索引类型'{}'。
- // 在类型“ {}”上没有找到参数类型为'string'的索引签名。
- dict[key];
- return (dict as Dict)[key]; // (A)
- } else {
- throw new Error();
- }
- }
(1) 非空断言运算符(后缀 !)
如果值的类型是包含 undefined 或 null 类型的联合,则 non-nullish声明运算符(或 non-null 声明运算符)将从联合中删除这些类型。我们告诉 TypeScript:“这个值不能是 undefined 或 null。”因此,我们可以执行这两个值的类型所阻止的操作,例如:
- const theName = 'Jane' as (null | string);
- // @ts-ignore: Object is possibly 'null'.
- theName.length;
- assert.equal(
- theName!.length, 4); // OK
(2) 示例 – Maps: .has() 之后的 .get()
使用 Map 方法 .has() 之后,我们知道 Map 具有给定的键。遗憾的是,.get() 的结果不能反映这一点,这就是为什么我们必须使用 nullish 断言运算符的原因:
- function getLength(strMap: Map
, key: string): number { - if (strMap.has(key)) {
- // We are sure x is not undefined:
- const value = strMap.get(key)!; // (A)
- return value.length;
- }
- return -1;
- }
由于 strMap 的值永远不会是 undefined,因此我们可以通过检查 .get() 的结果是否为 undefined 来检测丢失的 Map 条目(A 行):
- function getLength(strMap: Map
, key: string): number { - // %inferred-type: string | undefined
- const value = strMap.get(key);
- if (value === undefined) { // (A)
- return -1;
- }
- // %inferred-type: string
- value;
- return value.length;
- }
(3) 定值断言
如果打开 strict 属性初始化,有时需要告诉 TypeScript 我们确实初始化某些属性——即使它认为我们不需要这样做。
这是一个例子,尽管 TypeScript 不应这样做,但它仍会报错:
- class Point1 {
- // @ts-ignore: Property 'x' has no initializer and is not definitely
- // assigned in the constructor.
- x: number;
- // @ts-ignore: Property 'y' has no initializer and is not definitely
- // assigned in the constructor.
- y: number;
- constructor() {
- this.initProperties();
- }
- initProperties() {
- this.x = 0;
- this.y = 0;
- }
- }
如果我们在 A 行和 B 行中使用“定值分配断言”(感叹号),则错误会消失:
- class Point2 {
- x!: number; // (A)
- y!: number; // (B)
- constructor() {
- this.initProperties();
- }
- initProperties() {
- this.x = 0;
- this.y = 0;
- }
- }
新闻名称:TypeScript中的类型断言
网页路径:http://www.gawzjz.com/qtweb/news43/197643.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联