最近有人遇到过这个问题吗?
https://github.com/facebook/flow/issues/1279
我正在使用流量0.5并且我的代码类似于该问题,除了我将类型Props作为泛型传递给组件:
type Prop = {
key1: string
}
class MyComponent extends React.Component<void, Props, void> {...}
调用:<MyComponent unknownKey="should fail" />
应该失败,因为unknownKey不存在。
答案 0 :(得分:2)
所以我弄明白了我的问题。我的组件有一个用于导出的index.js文件,该文件需要用flow注释(// @ flow)。