在 props 中传递 Redux 存储

IT技术 node.js reactjs redux react-redux yarnpkg
2021-05-20 19:34:33

我正在大学练习使用 React 和 Redux 构建应用程序。当我使用 Yarn 启动服务器时,出现此错误:

Passing redux store in props has been removed and does not do anything. 
To use a custom Redux store for specific components, create a custom React context with React.createContext(), and pass the context object to React-Redux's Provider and specific components like: 
<Provider context={MyContext}><ConnectedComponent context={MyContext} /></Provider>. 
You may also pass a {context : MyContext} option to connect

我的文件是这些:

索引.js

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import ReduxProvider from './redux/ReduxProvider';
import * as serviceWorker from './serviceWorker';

ReactDOM.render(<ReduxProvider />, document.getElementById('root'));

serviceWorker.unregister();

ReduxProvider

import { questions } from "../assets/mock-data.js";
import { Provider } from 'react-redux';
import GlobalState from "./reducers";
import { createStore } from 'redux';

import React from 'react';
import App from '../App';

export default class ReduxProvider extends React.Component {
    constructor(props) {
        super(props);
        this.initialState = {
            score: 0,
            finished: false,
            currentQuestion: 0,
            questions: [ ...questions]
        };
        this.store = this.configureStore();
    }

    render() {
        return (
            <Provider store={ this.store }>
                <div>
                    <App store={ this.store } />
                </div>
            </Provider>
        );
    }

    configureStore() {
        return createStore(GlobalState, this.initialState);
    }
}

应用程序.js

import React, { Component } from 'react';
import './App.css';
import { connect } from 'react-redux';

class App extends Component {
  render() {
    return (
      <div className="App">
        Hola
      </div>
    );
  }
}

function mapStateToProps(state) {
    return {
      ...state
    };
}

export default connect(mapStateToProps)(App);

减速器.js

import { combineReducers } from 'redux';

function score(state = 0, action = {}) {
    switch(action.type) {
        default:
            return state;
    }
}

function finished(state = 0, action = {}) {
    switch(action.type) {
        default:
            return state;
    }
}

function currentQuestion(state = 0, action = {}) {
    switch(action.type) {
        default:
            return state;
    }
}

function questions(state = 0, action = {}) {
    switch(action.type) {
        default:
            return state;
    }
}

const GlobalState = (combineReducers({
    score,
    finished,
    currentQuestion,
    questions
}));

export default GlobalState;

到了这个时候,我至少应该能够在没有任何错误的情况下运行该应用程序,但是我总是在 Redux Store 中遇到该错误,我不知道为什么。任何module的版本或类似的东西都会有问题吗?

我正在使用纱线 1.12.3 和 nodejs v8.12.0

告诉我是否还有其他文件需要显示。

3个回答

不要将store实例传递<App>. 这没有任何作用,React-Redux v6 正在警告你。

在 React-Redux v5 中,允许将 store 作为 prop 直接传递给连接的组件,并且在极少数情况下它很有用,但在 v6 中已被删除。

请参阅我的文章Idiomatic Redux:React-Redux 的历史和实现,了解有关为什么删除该部分 API 的一些详细信息。

另请注意,从返回整个Redux的状态对象mapState通常不是一个好主意,如果由于某种原因,你真正想做的事情是,你不需要传播它-只是return state有关编写mapState函数的一些解释,请参阅React-Redux 文档部分

React Redux 7.0.1允许store再次作为 Prop传递

从发行说明:

我们恢复了将 store 作为 prop 直接传递给连接组件的能力。由于内部实现更改(组件不再直接订阅商店),这在版本 6 中被删除。一些用户表示担心在单元测试中使用上下文是不够的。由于我们的组件再次使用直接订阅,我们重新实现了这个选项,这应该可以解决这些问题。

问题出在第 25 行,ReduxProvider

<App store={this.store}>

这个组件被包裹Provider(它可以并且应该接受商店作为props),这样做的目的是让商店对应用程序的其余部分可用 - 因此不需要将商店直接传递给子组件。

要访问商店,请使用该connect函数将组件连接到商店,然后使用mapStateToProps / mapDispatchToProps访问状态和/或调度操作。

更多信息