当前位置:   article > 正文

TS中的工具函数_ts工具函数

ts工具函数

1、Partial:接口全部字段变为可选类型

  1. interface User {
  2. id: number
  3. name: string
  4. age: number
  5. }
  6. // 现在Form拥有User里面的所有字段,但是全是可选的
  7. type Form = Partial<User>

2、Required:接口全部字段变为必填类型

  1. interface User {
  2. id: number
  3. name?: string
  4. age?: number
  5. }
  6. // 现在Form拥有User里面的所有字段,但是全部变为必填字段
  7. type Form = Required<User>

3、Readonly:接口全部字段变为只读类型

  1. interface User {
  2. id: number
  3. name: string
  4. age: number
  5. }
  6. type Form = Readonly<User>
  7. const zhangsan: Form = {
  8. id: 1,
  9. name: '张三',
  10. age: 18
  11. }
  12. // 报错
  13. zhangsan.name = '李四'

4、Pick:提取接口中的某些字段

  1. interface User {
  2. id: number
  3. name: string
  4. age: number
  5. }
  6. // 此时From中就只有name、age字段
  7. type Form = Pick<User, 'name' | 'age'>

5、Omit:排除接口中的某些字段

  1. interface User {
  2. id: number
  3. name: string
  4. age: number
  5. }
  6. // 此时From中就只有id字段
  7. type Form = Omit<User, 'name' | 'age'

6、Exclude:排除type中的某些字段

  1. type Name = 'zhangsan' | 'lisi'
  2. // 此时Form中只有lisi字段
  3. type Form = Exclude<Name, 'zhangsan'>

7、Extract:提取type中的某些字段

  1. type Name = 'zhangsan' | 'lisi'
  2. // 此时Form中只有zhangsan字段
  3. type Form = Extract<Name, 'zhangsan'>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/545429
推荐阅读
相关标签
  

闽ICP备14008679号