我定义了三个类型如下:
type ParamsA = {
same: string;
a: string;
};
type ParamsB = {
same: string;
b: number;
};
type Common = {
c: number;
};
两个方法:
function fnA(data: ParamsA & Common) {
console.log(data);
}
function fnB(data: ParamsB & Common) {
console.log(data);
}
然后我在页面使用的时候:
type Json = Partial<ParamsA & ParamsB>;
const randomBoolean = true; // 这里可能是true,也可能是false
const json: Json = {};
function fnc() {
// 这里可以保证json里面的值根据randomBoolean的值对应的类型都有
// 例如,为true的时候就是肯定有same a c,但是b不一定会有
const params = {
...json,
c: 1,
};
if (randomBoolean) {
delete params.b;
} else {
delete params.a;
}
const f = randomBoolean ? fnA : fnB;
f(params);
}
问题就是我在使用f(params)
的时候怎么让这个params
有上面方法里面定义的类型?
我尝试写了一个方法去推导出类型,但是还是不行,请大佬解答一二。
declare function filterParams<T>(
x: Json
): T extends true ? ParamsA & Common : ParamsB & Common;
// 使用的时候
f(filterParams<typeof randomUnm>(params))
这样应该是你想要的。