摘要:会报错,因为中没有暴露此方法,可以最大限度的避免拼写错误在此之前,先看一个的错误处理流程,以下是对进行集中处理,并且标识的过程在处,会编译出错,提示。
用了一段时间的 typescript 之后,深感中大型项目中 typescript 的必要性,它能够提前在编译期避免许多 bug,如很恶心的拼写问题。而越来越多的 package 也开始使用 ts,学习 ts 已是势在必行。
以下是我在工作中总结到的比较实用的 typescript 技巧。
本文链接: https://shanyue.tech/post/ts-...
01 keyofkeyof 与 Object.keys 略有相似,只不过 keyof 取 interface 的键。
interface Point { x: number; y: number; } // type keys = "x" | "y" type keys = keyof Point;
假设有一个 object 如下所示,我们需要使用 typescript 实现一个 get 函数来获取它的属性值
const data = { a: 3, hello: "world" } function get(o: object, name: string) { return o[name] }
我们刚开始可能会这么写,不过它有很多缺点
无法确认返回类型:这将损失 ts 最大的类型校验功能
无法对 key 做约束:可能会犯拼写错误的问题
这时可以使用 keyof 来加强 get 函数的类型功能,有兴趣的同学可以看看 _.get 的 type 标记以及实现
function get02 Partial & Pick(o: T, name: K): T[K] { return o[name] }
既然了解了 keyof,可以使用它对属性做一些扩展, 如实现 Partial 和 Pick,Pick 一般用在 _.pick 中
type Partial03 Condition Type= { [P in keyof T]?: T[P]; }; type Pick = { [P in K]: T[P]; }; interface User { id: number; age: number; name: string; }; // 相当于: type PartialUser = { id?: number; age?: number; name?: string; } type PartialUser = Partial // 相当于: type PickUser = { id: number; age: number; } type PickUser = Pick
类似于 js 中的 ?: 运算符,可以使用它扩展一些基本类型
T extends U ? X : Y type isTrue04 never & Exclude & Omit= T extends true ? true : false // 相当于 type t = false type t = isTrue // 相当于 type t = false type t1 = isTrue
官方文档对 never 的描述如下
the never type represents the type of values that never occur.
结合 never 与 conditional type 可以推出很多有意思而且实用的类型,比如 Omit
type Exclude= T extends U ? never : T; // 相当于: type A = "a" type A = Exclude<"x" | "a", "x" | "y" | "z">
结合 Exclude 可以推出 Omit 的写法
type Omit05 typeof= Pick >; interface User { id: number; age: number; name: string; }; // 相当于: type PickUser = { age: number; name: string; } type OmitUser = Omit
顾名思义,typeof 代表取某个值的 type,可以从以下示例来展示他们的用法
const a: number = 3 // 相当于: const b: number = 4 const b: typeof a = 4
在一个典型的服务端项目中,我们经常需要把一些工具塞到 context 中,如config,logger,db models, utils 等,此时就使用到 typeof。
import logger from "./logger" import utils from "./utils" interface Context extends KoaContect { logger: typeof logger, utils: typeof utils } app.use((ctx: Context) => { ctx.logger.info("hello, world") // 会报错,因为 logger.ts 中没有暴露此方法,可以最大限度的避免拼写错误 ctx.loger.info("hello, world") })06 is
在此之前,先看一个 koa 的错误处理流程,以下是对 error 进行集中处理,并且标识 code 的过程
app.use(async (ctx, next) => { try { await next(); } catch (err) { let code = "BAD_REQUEST" if (err.isAxiosError) { code = `Axios-${err.code}` } else if (err instanceof Sequelize.BaseError) { } ctx.body = { code } } })
在 err.code 处,会编译出错,提示 Property "code" does not exist on type "Error".ts(2339)。
此时可以使用 as AxiosError 或者 as any 来避免报错,不过强制类型转换也不够友好
if ((err as AxiosError).isAxiosError) { code = `Axios-${(err as AxiosError).code}` }
此时可以使用 is 来判定值的类型
function isAxiosError (error: any): error is AxiosError { return error.isAxiosError } if (isAxiosError(err)) { code = `Axios-${err.code}` }
在 GraphQL 的源码中,有很多诸如此类的用法,用以标识类型
export function isType(type: any): type is GraphQLType; export function isScalarType(type: any): type is GraphQLScalarType; export function isObjectType(type: any): type is GraphQLObjectType; export function isInterfaceType(type: any): type is GraphQLInterfaceType;07 interface & type
interface 与 type 的区别是什么?可以参考以下 stackoverflow 的问题
https://stackoverflow.com/que...
一般来说,interface 与 type 区别很小,比如以下两种写法差不多
interface A { a: number; b: number; }; type B { a: number; b: number; }
其中 interface 可以如下合并多个,而 type 只能使用 & 类进行连接。
interface A { a: number; } interface A { b: number; } const a: A = { a: 3, b: 4 }08 Dictionary & Many
这几个语法糖是从 lodash 的 types 源码中学到的,平时工作中的使用频率还挺高。
interface Dictionary09 使用 const enum 维护常量表{ [index: string]: T; }; interface NumericDictionary { [index: number]: T; }; const data:Dictionary = { a: 3, b: 4 }
相比使用字面量对象维护常量,const enum 可以提供更安全的类型检查
// 使用 object 维护常量 const enum TODO_STATUS { TODO = "TODO", DONE = "DONE", DOING = "DOING" }
// 使用 const enum 伟华常量 const enum TODO_STATUS { TODO = "TODO", DONE = "DONE", DOING = "DOING" } function todos (status: TODO_STATUS): Todo[]; todos(TODO_STATUS.TODO)10 VS Code Tips & Typescript Command
使用 VS Code 有时会出现,使用 tsc 编译时产生的问题与 vs code 提示的问题不一致
找到项目右下角的 Typescript 字样,右侧显示它的版本号,可以点击选择 Use Workspace Version,它表示与项目依赖的 typescript 版本一直。
或者编辑 .vs-code/settings.json
{ "typescript.tsdk": "node_modules/typescript/lib" }11 Typescript Roadmap
最后一条也是最重要的一条,翻阅 Roadmap,了解 ts 的一些新的特性与 bug 修复情况。
Typescript Roadmap
参考https://www.typescriptlang.or...
https://www.typescriptlang.or...
https://moin.world/2017/06/18...
欢迎关注我的公众号山月行,在这里记录着我的技术成长,欢迎交流
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/104611.html
摘要:一个带提示的最后对于开发同学来说,就算不使用,也强烈建议使用提供注解,它会通过一些类型推导来检查你的代码的正确性,可以减少很多开发过程中的。相对于对象,它保证了输入的类型你定义的对象可能某一天不再只有类型的,不再需要额外的类型判断。 作者:陈达孚 香港中文大学研究生,《移动Web前端高效开发实战》作者之一,《前端开发者指南2017》译者之一,在中国前端开发者大会,中生代技术大会等技术...
摘要:官方文档高级类型优先阅读,建议阅读英文文档。关键字这个关键字是在版本引入的在条件类型语句中,该关键字用于替代手动获取类型。源码解释使用条件判断完成示例官方作用该类型可以获得函数的参数类型组成的元组类型。 学习 TypeScript 到一定阶段,必须要学会高阶类型的使用,否则一些复杂的场景若是用 any 类型来处理的话,也就失去了 TS 类型检查的意义。 本文罗列了 TypeScript...
摘要:往期第一课体验第二课基础类型和入门高级类型第三课泛型第四课解读高级类型插一课本来打算接着上节课把高级类型都讲完但是写着写着我发现高级类型中有很多地方都需要泛型的知识那么先插一节泛型什么是类型变量和泛型变量的概念我们都知道可以表示任意数据类型 往期 第一课, 体验typescript 第二课, 基础类型和入门高级类型 第三课, 泛型 第四课, 解读高级类型 插一课 本来打算接着上节课, ...
摘要:入门,第一个这是一门很新的语言,年前后正式公布,算起来是比较年轻的编程语言了,更重要的是它是面向程序员的函数式编程语言,它的代码运行在之上。它通过编辑类工具,带来了先进的编辑体验,增强了语言服务。 showImg(https://segmentfault.com/img/bV1xdq?w=900&h=385); 新的一年不知不觉已经到来了,总结过去的 2017,相信小伙们一定有很多收获...
摘要:入门,第一个这是一门很新的语言,年前后正式公布,算起来是比较年轻的编程语言了,更重要的是它是面向程序员的函数式编程语言,它的代码运行在之上。它通过编辑类工具,带来了先进的编辑体验,增强了语言服务。 showImg(https://segmentfault.com/img/bV1xdq?w=900&h=385); 新的一年不知不觉已经到来了,总结过去的 2017,相信小伙们一定有很多收获...
阅读 2026·2021-11-02 14:48
阅读 2741·2019-08-30 14:19
阅读 2914·2019-08-30 13:19
阅读 1235·2019-08-29 16:17
阅读 3199·2019-08-26 14:05
阅读 2965·2019-08-26 13:58
阅读 3024·2019-08-23 18:10
阅读 1079·2019-08-23 18:04