javascript-使用React-Redux“ connect”时App类出错

前端之家收集整理的这篇文章主要介绍了javascript-使用React-Redux“ connect”时App类出错 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

尝试从react-redux使用connect()函数时,我收到以下错误

Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.

Check the render method of `App`.

这是应用程序:

import { Provider } from 'react-redux';
import configureStore from './store';
const App = class extends React.PureComponent {
  render() {
    const { title } = this.context;
    return (
      <div className="center-screen">
        {title}
        <Provider store={configureStore()}>
          <Chat />
        </Provider>
      </div>
    );
  }
};

这是聊天的相关代码结尾:

import { connect } from 'react-redux';


  ...


    const mapStateToProps = state => ({
  ...state
});
const mapDispatchToProps = dispatch => ({
  addMessage: () => dispatch(addMessage)
});

export default connect(
  mapStateToProps,mapDispatchToProps
)(Chat);

使用:“ export default Chat”代替connect时,它工作正常.

最佳答案
尝试这个:

const ConnectedChat = connect(
  mapStateToProps,mapDispatchToProps
)(Chat);

export default ConnectedChat;

或者,您可能希望将类定义重命名为ConnectedChat并反转名称,以便可以将其导入为“聊天”.

编辑:还要确保将聊天组件导入到App文件中,如果没有,请导入addMessage操作创建者.

原文链接:https://www.f2er.com/js/531299.html

猜你在找的JavaScript相关文章