类型断言:“我知道自己在做什么,清楚的知道自己需要什么类型”
// 尖叫号语法
let someValue: any = "this is a string";
let strLength: number = (<string>someValue).length // 断言成 string 类型
// as 语法
let someValue: any = "this is a string";let strLength: number = (someValue as string).length
两种形式是等价的,但在 react 中使用的时候,只有 as 语法断言是被允许的;