美文网首页
mapStateToProps() in Connect(com

mapStateToProps() in Connect(com

作者: Rose_yang | 来源:发表于2021-12-02 19:30 被阅读0次

    报错详情:

    warning.js?d95f:10 mapStateToProps() in Connect(EditorAttributes) must return a plain object. Instead received undefined.
    

    报错代码片段:

    connect((state) => state.app2)(comp);
    

    原因:
    mirrorx name 是'app1', 由于复制代码忘记改导致报错
    改成
    connect((state) => state.app1)(组件名);

    相关文章

      网友评论

          本文标题:mapStateToProps() in Connect(com

          本文链接:https://www.haomeiwen.com/subject/vhqhtrtx.html