`ts` 的类型转换 `as` 是骗编译器的,不会真的在运行时进行类型转换 你要类型转换应该这么写: let n = 12345 n = String(n) console.log(n) // "12345"
阅读量:1
点赞量:0