TypeScript内置类型一览(Record<string,any>等等)(上)

简介: TypeScript内置类型一览(Record<string,any>等等)

TypeScript中Record是啥?现在让我们来了解一下TypeScript官方的内置类型,让你的开发效率再上一层楼

Partial(部分的)

/**
 * Make all properties in T optional
 */
type Partial<T> = {
    [P in keyof T]?: T[P];
};

作用是让传入类型中的所有属性变成都是可选的

使用举例
export interface Student {
  name: string;
  age: number;
}

const student1: Student = {}

const student2: Partial = {}




变量student1的类型是Student,Student默认所有的属性都是不能为空的,所有会报错,student2就不会

Required(必须的)

/**

Make all properties in T required

*/

type Required = {

[P in keyof T]-?: T[P];

};

跟Partial的作用是相反的,是让传入类型中的所有属性变成都是必填的

使用举例
export interface Student {

name?: string;

age?: number;

}

const student1: Student = {}

const student2: Required = {}



变量student1的类型是Student,Student默认所有的属性都是可以为空的,所有不会报错,student2会报错

Readonly(只读的)

/**

Make all properties in T readonly

*/

type Readonly = {

readonly [P in keyof T]: T[P];

};

作用是让传入类型中的所有属性变成都是只读的(不能修改属性)

使用举例
export interface Student {

name: string;

age: number;

}

const student1: Student = {

name: ‘张三’,

age: 20

}

student1.age = 21


const student2: Readonly = {

name: ‘李四’,

age: 20

}

student2.age = 21


给student1的属性age重新赋值不会报错,给student2的属性age重新赋值就会报错,因为student2所有的属性都是只读的

Pick(选择)

/**

From T, pick a set of properties whose keys are in the union K

*/

type Pick = {

[P in K]: T[P];

};

作用是选择传入类型中的部分属性组成新类型


使用举例

export interface Student {

name: string;

age: number;

}

const student1: Student = {

name: ‘张三’,

age: 20

}


const student2: Pick = {

name: ‘李四’

}


const student3: Pick = {

name: ‘王五’,

age: 20

}


变量student1可以有所有属性name和age,变量student2就只能有属性name,变量student3加上属性age就会报错

Record(记录)

/**

Construct a type with a set of properties K of type T

/

type Record = {

[P in K]: T;

};

作用是构建一个类型,这个类型用来描述一个对象,这个对象的属性都具有相同的类型


使用举例

export const student1: Record<string, any> = {

name: ‘张三’,

age: 20

}

Record应该是日常使用频率较高的内置类型了,主要用来描述对象,一般建议是不用Object来描述对象,而是用Record代替,Record几乎可以说是万金油了

Exclude(排除)

/*

Exclude from T those types that are assignable to U

*/

type Exclude = T extends U ? never : T;

针对联合类型(interface这种没用),用人话说,排除相同的,留下不同的


使用举例

export type PersonAttr = ‘name’ | ‘age’

export type StudentAttr = ‘name’ | ‘age’ | ‘class’ | ‘school’

const student1: Exclude



student1就只能被赋值为’class’ 或者’school’

Extract(取出)

/**

Extract from T those types that are assignable to U

*/

type Extract = T extends U ? T : never;

与Exclude相反,针对联合类型,排除不同的的,取出相同的


使用举例

export type PersonAttr = ‘name’ | ‘age’

export type StudentAttr = ‘name’ | ‘age’ | ‘class’ | ‘school’

const student1: Extract


student1就只能被赋值为’name’或者’age’

TypeScript内置类型一览(Record<string,any>等等)(中):https://developer.aliyun.com/article/1510476

相关文章
|
4月前
|
JavaScript 前端开发
揭秘 TypeScript 条件类型:超越简单类型检查
揭秘 TypeScript 条件类型:超越简单类型检查
|
4月前
|
JavaScript 安全 索引
TypeScript 高级类型工具:Partial, Required, Record 的妙用与陷阱
TypeScript 高级类型工具:Partial, Required, Record 的妙用与陷阱
|
4月前
|
JavaScript 安全 IDE
TypeScript 类型体操:别让 `any` 毁了你的安全网!
TypeScript 类型体操:别让 `any` 毁了你的安全网!
|
2月前
|
数据安全/隐私保护
【Azure Function App】PowerShell Function 执行 Get-AzAccessToken 的返回值类型问题:System.String 与 System.Security.SecureString
将PowerShell Function部署到Azure Function App后,Get-AzAccessToken返回值类型在不同环境中有差异。正常为SecureString类型,但部分情况下为System.String类型,导致后续处理出错。解决方法是在profile.ps1中设置环境变量$env:AZUREPS_OUTPUT_PLAINTEXT_AZACCESSTOKEN=false,以禁用明文输出。
|
4月前
|
JavaScript 安全 编译器
TypeScript 类型守卫:让你的类型系统更智能
TypeScript 类型守卫:让你的类型系统更智能
|
5月前
|
存储 JSON JavaScript
[go]byte类型, string 类型, json 类型
本文介绍了Go语言中byte类型的基本概念、特点及用法。byte是8位无符号整数,取值范围为0-255,常用于二进制数据操作,如网络通信和文件读写。文章还详细说明了byte与字符串的转换、遍历byte数据以及与其他类型间的转换。此外,探讨了Go中json.Marshal和json.Unmarshal函数实现[]byte与JSON间的转换,并对比了[]byte与JSON的区别,帮助开发者更好地理解其应用场景与差异。
226 2
|
9月前
|
存储 安全 JavaScript
TypeScript-内置应用程序类型-Recode
通过使用 `Record` 类型,开发者可以显著提升代码的安全性和可维护性。无论是配置对象、字典结构还是动态表单,`Record` 类型都提供了一个简洁、类型安全的解决方案。
434 82
|
1月前
|
编解码 Java 开发者
Java String类的关键方法总结
以上总结了Java `String` 类最常见和重要功能性方法。每种操作都对应着日常编程任务,并且理解每种操作如何影响及处理 `Strings` 对于任何使用 Java 的开发者来说都至关重要。
269 5
|
5月前
|
存储 编译器 C语言
关于string的‘\0‘与string,vector构造特点,反迭代器与迭代器类等的讨论
你真的了解string的'\0'么?你知道创建一个string a("abcddddddddddddddddddddddddd", 16);这样的string对象要创建多少个对象么?你知道string与vector进行扩容时进行了怎么的操作么?你知道怎么求Vector 最大 最小值 索引 位置么?
147 0
|
8月前
|
缓存 安全 Java
《从头开始学java,一天一个知识点》之:字符串处理:String类的核心API
🌱 **《字符串处理:String类的核心API》一分钟速通!** 本文快速介绍Java中String类的3个高频API:`substring`、`indexOf`和`split`,并通过代码示例展示其用法。重点提示:`substring`的结束索引不包含该位置,`split`支持正则表达式。进一步探讨了String不可变性的高效设计原理及企业级编码规范,如避免使用`new String()`、拼接时使用`StringBuilder`等。最后通过互动解密游戏帮助读者巩固知识。 (上一篇:《多维数组与常见操作》 | 下一篇预告:《输入与输出:Scanner与System类》)
238 11