TypeScript 字符串字面量类型使用出错一例

时间:2022-07-30 14:41:24
interface IRecordOption{
format?: 'mp3'|'aac'
}

const recordOption = { format: 'mp3'};
const recorder = {
start(options: IRecordOption): void{

}
}
recorder.start(recordOption)

上面代码,调用 start() 函数,报传参类型错误。
错误消息:
[ts]
Argument of type '{ format: string; }' is not assignable to parameter of type 'IRecordOption'.
  Types of property 'format' are incompatible.
    Type 'string' is not assignable to type '"mp3" | "aac" | undefined'.

虽然 recordOption.format 的值确实是 'mp3',但定义时,没有指定类型,在后面代码引用时,format 的类型是默认的 string 而不是字面量 'mp3',因此,使用前,必须定义为 IRecordOption 类型,或进行类型转换。

// 使用强类型const recordOption:IRecordOption = { format: 'mp3'};// 或直接进行类型转换recorder.start(<IRecordOption>recordOption)