reactjs – Flow(React Native)给我的错误使用’this.state’

前端之家收集整理的这篇文章主要介绍了reactjs – Flow(React Native)给我的错误使用’this.state’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在我的代码中尝试使用this.state时,流量给我以下错误

object literal:
This type is incompatible with
undefined. Did you forget to declare type parameter State of identifier Component?:

这是违规代码(虽然它也发生在其他地方):

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

任何帮助将不胜感激=)

您需要在使用该属性之前定义state属性的类型。
class ComponentA extends Component {
    state: {
        isExpanded: Boolean;
    };
    constructor(props) {
        super(props);
        this.state = {
            isExpanded: false
        };
    }
}
原文链接:https://www.f2er.com/react/301437.html

猜你在找的React相关文章