最新文章

TypeScript 如何把数组转换为字符串字面量联合类型?

少于 1 分钟阅读

想要把字符串数组转换为字符串字面量联合类型,可以先使用as const关键字定义只读字符串数组,然后对数组中的全部值使用typeof操作符。 // 只读的字符串数组 const namesArr = ["John", "Lily", "Roy"] as const; // 把数组转换为字符串字面量联合类型 ty...

node-sass 安装失败 Command failed 报错

2 分钟阅读

通过yarn install安装依赖包node-sass时总是报错,具体的错误原因为Command failed。应该如何解决这个问题呢? 报错信息 D:\testspace\test\node_modules\node-sass: Command failed. Exit code: 1 Command: ...