我是靠谱客的博主 热情百褶裙,最近开发中收集的这篇文章主要介绍『TypeScript』类型守卫,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

类型缩小:type Narrowing

类型守卫是 一个值确保在该类型的范围内。

1. in 关键字

interface InObj1 {
a: number,
x: string
}
interface InObj2 {
a: number,
y: string
}
function isIn(arg: InObj1 | InObj2) {
// x 在 arg 打印 x
if ('x' in arg) console.log('x')
// y 在 arg 打印 y
if ('y' in arg) console.log('y')
}
isIn({a:1, x:'xxx'});
isIn({a:1, y:'yyy'});

2. typeof 关键字

function isTypeof( val: string | number) {
if (typeof val === "number") return 'number'
if (typeof val === "string") return 'string'
return '啥也不是'
}

typeof 只支持:typeof 'x' === 'typeName' 和 typeof 'x' !== 'typeName',x 必须是  'number', 'string', 'boolean', 'symbol'。

3. instanceof

function creatDate(date: Date | string){
    console.log(date)
    if(date instanceof Date){
        date.getDate()
    }else {
        return new Date(date)
    }
}

4. 自定义类型保护和类型谓词

function isNumber(num: any): num is number {
return typeof num === 'number';
}
function isString(str: any): str is string{
return typeof str=== 'string';
}

最后

以上就是热情百褶裙为你收集整理的『TypeScript』类型守卫的全部内容,希望文章能够帮你解决『TypeScript』类型守卫所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部