在react项目当中使用redux
Posted 无情码字员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在react项目当中使用redux相关的知识,希望对你有一定的参考价值。
如果需要在你的react项目当中使用状态管理模式的话,需要引入redux和react-redux两个插件,redux提供基本的功能,react-redux提供将redux注入react的方法。
import React from ‘react‘ import { render } from ‘react-dom‘ import { createStore } from ‘redux‘ import { Provider } from ‘react-redux‘ import App from ‘./containers/App‘ import todoApp from ‘./reducers‘ let store = createStore(todoApp); let rootElement = document.getElementById(‘root‘) render( <Provider store={store}> <App /> </Provider>, rootElement )
在渲染之前将根组件包进Provider
当中,这样App就是容器组件了,在它里面都可以通过引入store,在当中使用getState,dispatch等redux提供的相关api方法进行操作了
以上是关于在react项目当中使用redux的主要内容,如果未能解决你的问题,请参考以下文章
“ES7 React/Redux/GraphQL/React-Native 片段”不适用于 javascript 文件。除了安装它,我还需要配置其他东西吗?