ts学习(5)

  1. 类型守卫: typeof(number,string,boolean,object,function,undefined)
  2. 类型缩小:等值类型缩小(===,!==,==,!=作为判断条件的),in操作符缩小,instanceof操作符缩小,真值缩小(”,undefined,null,NaN,0),分配缩小。

    ts学习(5)
    image.png
type Fish = {swim:()=>void}
type Bird = {fly:()=>void}
function move(animal:Fish|Bird){
  if('swim' in animal){
    return animal.swim();
  }
  return animal.fly();
}
ts学习(5)
image.png
  1. 类型谓词:is:用户自定义类型保护。
// 通过泛型定义通用类型保护函数
function isOfType(
  target: unknown,
  prop: keyof T
): target is T {
  return (target as T)[prop] !== undefined;
}
其他

ts学习(4)

2024-12-9 10:40:01

其他

react学习(5)

2024-12-9 10:40:07

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
搜索