this.state
时,Flow就会出现以下错误:
对象文字: 这种类型与之不相容 未定义。您是否忘记声明标识符
State
的类型参数Component
?:
这是有问题的代码(尽管它也发生在其他地方):
class ExpandingCell extends Component {
constructor(props) {
super(props);
this.state = {
isExpanded: false
};
}
非常感谢任何帮助=)
答案 0 :(得分:59)
您需要为state属性定义一个类型才能使用它。
class ComponentA extends Component {
state: {
isExpanded: Boolean
};
constructor(props) {
super(props);
this.state = {
isExpanded: false
};
}
}
答案 1 :(得分:22)
如果您正在使用流程并希望在组件的this.state
中设置constructor
:
1。为type
this.state
type State = { width: number, height: number }
2。使用type
export default class MyComponent extends Component<Props, State> { ... }
3。现在您可以设置this.state
而不会出现任何流错误
constructor(props: any) {
super(props)
this.state = { width: 0, height: 0 }
}
这是一个更完整的示例,可在调用this.state
时更新onLayout
组件的宽度和高度。
// @flow
import React, {Component} from 'react'
import {View} from 'react-native'
type Props = {
someNumber: number,
someBool: boolean,
someFxn: () => any,
}
type State = {
width: number,
height: number,
}
export default class MyComponent extends Component<Props, State> {
constructor(props: any) {
super(props)
this.state = {
width: 0,
height: 0,
}
}
render() {
const onLayout = (event) => {
const {x, y, width, height} = event.nativeEvent.layout
this.setState({
...this.state,
width: width,
width: height,
})
}
return (
<View style={styles.container} onLayout={onLayout}>
...
</View>
)
}
}
const styles = StyleSheet.create({
container: {
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
},
})
答案 2 :(得分:0)
您可以忽略流类型为:any
的状态,但是不建议这样做。当您的状态变得越来越复杂时,您将会迷路。
class ExpandingCell extends Component {
state: any;
constructor(props) {
super(props);
this.state = {
isExpanded: false
};
}
}
答案 3 :(得分:-23)
删除代码flite top
中的/* @flow */