如何優雅地在React項目中使用Redux

前言

或許你當前的項目尚未到應用Redux的程度,但提早了解一下也沒有壞處,本文不會安利你們使用Reduxreact

概念

首先咱們會用到哪些框架和工具呢?json

React

UI框架redux

Redux

狀態管理工具,與React沒有任何關係,其餘UI框架也可使用Reduxapi

react-redux

React插件,做用:方便在React項目中使用Reduxapp

react-thunk

中間件,做用:支持異步action框架

目錄結構

Tips:與Redux無關的目錄已省略dom

 

1 |--src
2     |-- store                Redux目錄
3         |-- actions.js
4         |-- index.js
5         |-- reducers.js
6         |-- state.js
7     |-- components         組件目錄
8         |-- Test.jsx
9     |-- App.js               項目入口

 

準備工做

第1步:提供默認值,既然用Redux來管理數據,那麼數據就必定要有默認值,因此咱們將state的默認值統一放置在state.js文件異步

 1 // state.js
 2 
 3 // 聲明默認值
 4 // 這裏咱們列舉兩個示例
 5 // 同步數據:pageTitle
 6 // 異步數據:infoList(未來用異步接口獲取)
 7 export default {
 8     pageTitle: '首頁',
 9     infoList: []
10 }  

 

第2步:建立reducer,它就是未來真正要用到的數據,咱們將其統一放置在reducers.js文件ide

 1 // reducers.js
 2 
 3 // 工具函數,用於組織多個reducer,並返回reducer集合
 4 import { combineReducers } from 'redux'
 5 // 默認值
 6 import defaultState from './state.js'
 7 
 8 // 一個reducer就是一個函數
 9 function pageTitle (state = defaultState.pageTitle, action) {
10   // 不一樣的action有不一樣的處理邏輯
11   switch (action.type) {
12     case 'SET_PAGE_TITLE':
13       return action.data
14     default:
15       return state
16   }
17 }
18 
19 function infoList (state = defaultState.infoList, action) {
20   switch (action.type) {
21     case 'SET_INFO_LIST':
22       return action.data
23     default:
24       return state
25   }
26 }
27 
28 // 導出全部reducer
29 export default combineReducers({
30     pageTitle,
31     infoList
32 })

 

第3步:建立action,如今咱們已經建立了reducer,可是尚未對應的action來操做它們,因此接下來就來編寫action函數

 1 // actions.js
 2 
 3 // action也是函數
 4 export function setPageTitle (data) {
 5   return (dispatch, getState) => {
 6     dispatch({ type: 'SET_PAGE_TITLE', data: data })
 7   }
 8 }
 9 
10 export function setInfoList (data) {
11   return (dispatch, getState) => {
12     // 使用fetch實現異步請求
13     window.fetch('/api/getInfoList', {
14         method: 'GET',
15         headers: {
16             'Content-Type': 'application/json'
17         }
18     }).then(res => {
19         return res.json()
20     }).then(data => {
21         let { code, data } = data
22         if (code === 0) {
23             dispatch({ type: 'SET_INFO_LIST', data: data })
24         }
25     })
26   }
27 }

 

最後一步:建立store實例

 1 // index.js
 2 
 3 // applyMiddleware: redux經過該函數來使用中間件
 4 // createStore: 用於建立store實例
 5 import { applyMiddleware, createStore } from 'redux'
 6 
 7 // 中間件,做用:若是不使用該中間件,當咱們dispatch一個action時,須要給dispatch函數傳入action對象;但若是咱們使用了這個中間件,那麼就能夠傳入一個函數,這個函數接收兩個參數:dispatch和getState。這個dispatch能夠在未來的異步請求完成後使用,對於異步action頗有用
 8 import thunk from 'redux-thunk'
 9 
10 // 引入reducer
11 import reducers from './reducers.js'
12 
13 // 建立store實例
14 let store = createStore(
15   reducers,
16   applyMiddleware(thunk)
17 )
18 
19 export default store

 

至此,咱們已經完成了全部使用Redux的準備工做,接下來就在React組件中使用Redux

開始使用

首先,咱們來編寫應用的入口文件APP.js

 1 // App.js
 2 
 3 import React from 'react'
 4 import ReactDOM from 'react-dom'
 5 
 6 // 引入組件
 7 import TestComponent from './components/Test.jsx'
 8 
 9 // Provider是react-redux兩個核心工具之一,做用:將store傳遞到每一個項目中的組件中
10 // 第二個工具是connect,稍後會做介紹
11 import { Provider } from 'react-redux'
12 // 引入建立好的store實例
13 import store from '@/store/index.js'
14 
15 // 渲染DOM
16 ReactDOM.render (
17   (
18     <div>
19         {/* 將store做爲prop傳入,便可使應用中的全部組件使用store */}
20         <Provider store = {store}>
21           <TestComponent />
22         </Provider>
23     </div>
24   ),
25   document.getElementById('root')
26 )

 

最後是咱們的組件:Test.jsx

 1 // Test.jsx
 2 
 3 import React, { Component } from 'react'
 4 
 5 // connect方法的做用:將額外的props傳遞給組件,並返回新的組件,組件在該過程當中不會受到影響
 6 import { connect } from 'react-redux'
 7 
 8 // 引入action
 9 import { setPageTitle, setInfoList } from '../store/actions.js'
10 
11 class Test extends Component {
12   constructor(props) {
13     super(props)
14   }
15 
16   componentDidMount () {
17     let { setPageTitle, setInfoList } = this.props
18     
19     // 觸發setPageTitle action
20     setPageTitle('新的標題')
21     
22     // 觸發setInfoList action
23     setInfoList()
24   }
25 
26   render () {
27     // 從props中解構store
28     let { pageTitle, infoList } = this.props
29     
30     // 使用store
31     return (
32       <div>
33         <h1>{pageTitle}</h1>
34         {
35             infoList.length > 0 ? (
36                 <ul>
37                     {
38                         infoList.map((item, index) => {
39                             <li>{item.data}</li>
40                         })
41                     }
42                 </ul>
43             ):null
44         }
45       </div>
46     )
47   }
48 }
49 
50 // mapStateToProps:將state映射到組件的props中
51 const mapStateToProps = (state) => {
52   return {
53     pageTitle: state.pageTitle,
54     infoList: state.infoList
55   }
56 }
57 
58 // mapDispatchToProps:將dispatch映射到組件的props中
59 const mapDispatchToProps = (dispatch, ownProps) => {
60   return {
61     setPageTitle (data) {
62         // 若是不懂這裏的邏輯可查看前面對redux-thunk的介紹
63         dispatch(setPageTitle(data))
64         // 執行setPageTitle會返回一個函數
65         // 這正是redux-thunk的所用之處:異步action
66         // 上行代碼至關於
67         /*dispatch((dispatch, getState) => {
68             dispatch({ type: 'SET_PAGE_TITLE', data: data })
69         )*/
70     },
71     setInfoList (data) {
72         dispatch(setInfoList(data))
73     }
74   }
75 }
76 
77 export default connect(mapStateToProps, mapDispatchToProps)(Test)

 

Redux三大原則

  • 單一數據源
    整個應用的 state 被儲存在一棵 object tree 中,而且這個 object tree 只存在於惟一一個 store 中
  • State 是隻讀的
    惟一改變 state 的方法就是觸發 action,action 是一個用於描述已發生事件的普通對象
  • 使用純函數來執行修改
    爲了描述 action 如何改變 state tree ,你須要編寫 reducers

結語

以上就是在React項目中使用Redux的簡單示例,文中代碼可能會有編寫錯誤,歡迎指正,同事但願本文對你們有所幫助

參考

 

 

原文出處:如何優雅地在React項目中使用Redux

相關文章
相關標籤/搜索