美文网首页
ts 类型强转

ts 类型强转

作者: space77 | 来源:发表于2021-01-28 15:28 被阅读0次

    typescript 类型 强行转换

    提示:如果不能很好的控制变量类型,我建议不要强转。

    ts 关键词:as

    未知类型 => 已知类型

    type b = { c: number }
    const test: any = { a: '1' }
    const test1 = test as b
    /// test1 的类型类变为b
    console.log(test1)
    

    已知的不同类型转换

    type b = { c: number }
    const test = { a: '1' }
    const test1 = (test as any) as b
    /// test1 的类型类变为b
    console.log(test1)
    

    相关文章

      网友评论

          本文标题:ts 类型强转

          本文链接:https://www.haomeiwen.com/subject/nnzttltx.html