声明了这样一个类型
type MyType = string | {
StartType?: string;
StartContext?: string;
StartDate?: string;
StartFalg?: string;
} | {
EndType?: string;
EndContext?: string;
EndDate?: string;
EndFalg?: string;
}
为什么对于这样的变量初始化,并没有提示错误?
const x: MyType = {
StartDate: '1',
EndDate: '2'
}
在我理解中, 对象中存在StartDate之后, 这个类型应该就塌缩为
{
StartType?: string;
StartContext?: string;
StartDate?: string;
StartFalg?: string;
}
此时若存在 EndDate
,应该是有问题的。
请问这种情况是什么原因导致的? 以及如何实现上述逻辑。
原因是因为你的两个对象字面量里的类型全是可选属性,TS会自动给可选属性添加undefined类型,因此你的声明等价于
你的这个类型也就满足了TS中弱类型的概念
所以你这种使用方式本身存在问题,和下面这样没有任何区别
正确的做法应该是你的两个类型都需要有个非可选属性,才能保证你的类型是独立的。
官方给出的推荐做法: