Flow(React Native)给了我使用' this.state'

时间:2016-04-26 09:09:30

标签: reactjs react-native flowtype

每当我尝试在代码中使用this.state时,

Flow就会出现以下错误:

  

对象文字:   这种类型与之不相容   未定义。您是否忘记声明标识符State的类型参数Component?:

这是有问题的代码(尽管它也发生在其他地方):

class ExpandingCell extends Component {
    constructor(props) {
    super(props);
    this.state = {
        isExpanded: false
    };
}

非常感谢任何帮助=)

4 个答案:

答案 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 */