React-Redux是Redux的官方React綁定函式庫。它能夠使你的React元件從Redux store中讀取數據,並且向store分發actions以更新數據。
安裝
在你的React app中使用React-Redux:
npm install --save react-redux
或
yarn add react-redux
簡言之,react-redux是一個輕量級的封裝庫,核心方法只有兩個:Provider和connect。
React-Redux 提供033de7db1b23dc23756a29338cfed1b2元件,能夠讓你的整個app存取到Redux store中的資料:
import React from "react"; import ReactDOM from "react-dom"; import { Provider } from "react-redux"; import store from "./store"; import App from "./App"; const rootElement = document.getElementById("root"); ReactDOM.render( <Provider store={store}> <App /> </Provider>, rootElement );
React-Redux提供一個connect方法能夠讓你把組件和store連接起來。
通常你可以用下面這種方式呼叫connect方法:
import { connect } from "react-redux"; import { increment, decrement, reset } from "./actionCreators"; // const Counter = ... const mapStateToProps = (state /*, ownProps*/) => { return { counter: state.counter }; }; const mapDispatchToProps = { increment, decrement, reset }; export default connect( mapStateToProps, mapDispatchToProps )(Counter);
相關推薦:《javascript教學》
以上是react redux是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!