我有一个包含静态类型的不同属性的对象。问题是当我尝试静态访问其中一个属性时,流程似乎无法理解并返回我想要访问的特定属性的类型。
是流量限制还是有办法解决这个问题?
这是一个示例代码,展示了我想要实现的目标
/* @flow */
const object = (({
first: 'first',
second: 2,
}): {
first: string,
second: number
});
type ObjectPropertiesType = $Keys<typeof object>;
const getObjectValue = (property: ObjectPropertiesType) => {
if (!object[property]) throw new Error(`object.${property} not exisiting`);
return object[property];
};
// -> Flow here complains that getObjectValue isn't compatible with string but is string | number
const getFirst = (): string => getObjectValue('first');
答案 0 :(得分:0)
我在github flow repo https://github.com/flowtype/flow-bin/issues/112
上回答了问题以下是解决方案:
/* @flow */
const object = (({
first: 'first',
second: 2,
}): {
first: string,
second: number
});
type ObjectPropertiesType = $Keys<typeof object>;
type GetValueType = <Prop: string>(property: Prop) => $ElementType<typeof object, Prop>;
const getObjectValue: GetValueType = (property) => {
return object[property];
};
const getFirst = (): string => getObjectValue('first');
const getSecond = (): number => getObjectValue('second');
const getSecondWrong = (): string => getObjectValue('second');
const getWrong = (): string => getObjectValue('third');