【干货】TypeScript之类型窄化篇
类型推论
let x = [0, 1, null] // number
let x = Math.random() < 0.5 ? 100 : "helloword" // number|string
let x: Animal[] = [new Rhino(), new Elephant(), new Snake()]; // Rhino | Elephant | Snake
联合类型和类型守卫
Example:
// 联合类型
type Types = number | string
function typeFn(type: Types, input: string): string {
// 如果这样写就需要判断type的类型
}
let x:number|string = 1
x="tiedan"
function typeFn(type: number | string, input: string) {
// 报错 运算符+号不能应用于 string
return new Array(type + 1).join("") + input
}
function typeFn(type: number | string, input: string) {
// 类型守卫
if (typeof type === 'number') {
return new Array(type + 1).join(" ") + input
}
return type + input
}
类型的窄化就是根据判断类型重新定义更具体的类型
-
使用 TypeScript 可以帮你降低 JavaScript 弱语言的脆弱性,帮你减少由于不正确类型导致错误产生的风险,以及各种 JavaScript 版本混杂造成错误的风险。 -
TypeScript 只是把高级语言的强类型这个最主要的特征引入 JavaScript ,就解决了防止我们在编写 JavaScript 代码时因为数据类型的转换造成的意想不到的错误,增加了我们排查问题的困难性。
"string"
"number"
"bigint" // ES10新增
"boolean"
"symbol" // ES6新增
"undefined"
"object"
"function"
function strOrName(str: string | string[] | null) {
if (typeof str === 'object') {
for (const s of str) {
// 报错 因为str有可能是null
console.log(s)
}
} else if (typeof str === 'string') {
console.log(str)
} else {
//......
}
}
真值窄化
0
NAN
""
0n // 0的bigint版本
null
undefined
// 利用真值判断
if (str && typeof strs === 'object') {
for (const s of strs) {
console.log(s)
}
}
function valOrName(values: number[] | undefined, filter: number): number[] | undefined {
if (!values) {
return values
} else {
return values.filter(x => x > filter)
}
}
相等性窄化
Example1:
function strOrNum(x: string | number, y: string | boolean) {
if (x === y) {
// string
} else {
// string|number
}
}
Example2:
function strOrName(str: string | string[] | null) {
if (str !== null) {
if (typeof str === 'object') {
for (const s of str) {
console.log(s) // []
}
} else if (typeof str === 'string') {
console.log(str) // string
} else {
// .....
}
}
}
Example3:
interface Types {
value: number | null | undefined
}
function valOrType(type: Types, val: number) {
// null和undefined 都是false 只能是number
if (type.value != null) {
type.value *= val
}
}
in操作符窄化
Example:
interface A { a: number };
interface B { b: string };
function foo(x: A | B) {
if ("a" in x) {
return x.a;
}
return x.b;
}
instanceof窄化
Example:
function dateInval(x: Date | string) {
if (x instanceof Date) {
// Date
} else {
// string
}
}
窄化的本质
Example:
function example() {
let x: string | number | boolean
x = Math.random() < 0.5
if (Math.random() < 0.5) {
x = 'hello' // string
} else {
x = 100 // number
}
return x; // string|number
}
联合类型的窄化
Example1:
interface Shape {
kind: "cirle" | "square",
redius?: number
sideLength?: number
}
// 报错
function getArea(shape: Shape) {
return Math.PI * shape.redius ** 2
}
// 窄化还是报错
function getArea(shape: Shape) {
if (shape.kind === 'cirle') {
return Math.PI * shape.redius ** 2
}
}
// 利用非空断言阔以
function getArea(shape: Shape) {
if (shape.kind === 'cirle') {
return Math.PI * shape.redius! ** 2
}
}
Example2:
interface Circle {
kind: "cirle";
redius: number;
}
interface Square {
kind: "square";
redius: number;
}
type Shape = Circle | Square
function getArea(shape: Shape) {
if (shape.kind === 'cirle') { // 窄化
return Math.PI * shape.redius ** 2
}
}
// 或者
function getArea(shape: Shape) {
switch (shape.kind) {
case "cirle":
return Math.PI * shape.redius ** 2
case "square":
return shape.sideLength ** 2
default:
const _example: never = shape
return _example
}
}
好文推荐
点个在看你最好看