TypeScriptTypeScript高级类型之Partial
Posted Ly_cat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeScriptTypeScript高级类型之Partial相关的知识,希望对你有一定的参考价值。
Partial
Partial 可以快速把某个接口类型中定义的所有属性变成可选的。
举个栗子:
interface ApiKey
id: number;
name: string;
const dataType1: ApiKey =
id: 1,
name: 'static'
const dataType2: ApiKey =
name: 'json'
这段代码会在编译时报错:
error TS2741: Property 'id' is missing in type ' name: string; ' but required in type 'ApiKey'.Key'.
因为dataType2
的类型是ApiKey,ApiKey中id
和name
都是必选的,这导致编译报错。假如ApiKey
中的参数是可选的,那么这个问题就会不复存在,而Partial
的作用就在于此,它可以帮助我们把ApiKey
中的所有属性都变成可选的。
我们用Partial
来重写一下这个栗子:
interface ApiKey
id: number;
name: string;
const dataType1: ApiKey =
id: 1,
name: 'static'
const dataType2: Partial<ApiKey> =
name: 'json'
这个时候在运行,就不会报错了。
以上是关于TypeScriptTypeScript高级类型之Partial的主要内容,如果未能解决你的问题,请参考以下文章
TypeScriptTypeScript高级类型之Partial
TypeScriptTypeScript高级类型之Record