有两种类型:
type ExcludeString<T = any> = Exclude<T, string>;
type ExcludeStringAndBoolean<T = any> = Exclude<T, string | boolean>;
在函数代码中
function test1<T>(p: ExcludeStringAndBoolean<T>) {
let a: ExcludeString<T>;
a = p;
}
tsc对第a = p
行抛出错误
Type 'Exclude<T, string | boolean>' is not assignable to type 'Exclude<T, string>'.ts(2322)
但是对于某些用途,它工作得很好:
type CertainType = string | number | boolean;
function test2(p: ExcludeStringAndBoolean<CertainType>) {
let a: ExcludeString<CertainType>;
a = p;
}
为什么会这样?
答案 0 :(得分:1)
Exclude
是条件类型。如果条件类型包含未解析的类型参数(例如T
),则打字稿将不会尝试对条件类型进行更多的推理。因此,可分配性规则变得非常严格。
对于Exclude
,如果第二个参数不同(即,所测试的类型不同),则可分配性检查失败(例如string | boolean
与string
)。如果第一个参数(即测试的类型)具有类型关系,则分配成功。例如,这将起作用:
type ExcludeString<T = any> = Exclude<T, string>;
type ExcludeStringAndBoolean<T = any> = Exclude<T, string | boolean>;
function test1<T extends U, U>(p: ExcludeString<T>) {
let a: ExcludeString<U>;
a = p;
}