摘要:原文地址數(shù)據(jù)流通過(guò)這張流程圖,我們可以更好的理解和直接數(shù)據(jù)如何流通,關(guān)系如何映射。函數(shù)只是一個(gè)純函數(shù),它接收應(yīng)用程序的當(dāng)前狀態(tài)以及發(fā)生的,然后返回修改后的新?tīng)顟B(tài)或者有人稱之為歸并后的狀態(tài)。的更新意味著更新。
原文地址:https://github.com/YutHelloWo...
-- React Redux 數(shù)據(jù)流
通過(guò)這張流程圖,我們可以更好的理解Redux和React直接數(shù)據(jù)如何流通,關(guān)系如何映射。
讓我們一步步來(lái)了解圖中的各個(gè)概念。
action & actionCreatoraction creator 就是函數(shù)而已,負(fù)責(zé)構(gòu)建一個(gè) action (是的,action creator 這個(gè)名字已經(jīng)很明顯了)并返回它。通過(guò)幾行簡(jiǎn)單的代碼就可以解釋清楚了!
const actionCreator = function () { return { type : "AN_ACTION" } }
一般約定 action 是一個(gè)擁有 type 屬性的對(duì)象。
console.log(actionCreator()) // { type: "AN_ACTION" }reducer
Reducer 函數(shù)只是一個(gè)純函數(shù),它接收應(yīng)用程序的當(dāng)前狀態(tài)以及發(fā)生的 action,然后返回修改后的新?tīng)顟B(tài)(或者有人稱之為歸并后的狀態(tài))。Reducer 函數(shù)是 action 的訂閱者。
const reducer = function (state = {}, action) { console.log("reducer was called with state", state, "and action", action); return state; }Store
以上,action描述“發(fā)生了什么”,而reducer根據(jù)action來(lái)更新state。但是他們兩者之間是如何關(guān)聯(lián)的呢?
不用擔(dān)心,Redux 會(huì)幫你把a(bǔ)ction和reducer連接起來(lái)。
我們把 Redux實(shí)例稱為 store 并用以下方式創(chuàng)建:
import { createStore } from "redux" const store_0 = createStore(() => {})
注意:在createStore時(shí),需要給它傳入一個(gè) reducer 函數(shù)。
每當(dāng)一個(gè)action發(fā)生時(shí),Redux都能調(diào)用這個(gè)函數(shù)。往 createStore 傳 Reducer 的過(guò)程就是給 Redux綁定 action處理函數(shù)(也就是Reducer)的過(guò)程。
接下來(lái),試著在 Reducer 中打印一些 log
const reducer = function (...args) { console.log("Reducer was called with args", args) } const store_1 = createStore(reducer) // 輸出:Reducer was called with args [ undefined, { type: "@@redux/INIT" } ]
我們沒(méi)有dispatch(分發(fā))任何action,但是reducer被調(diào)用了!這是由于初始化應(yīng)用state的時(shí)候,Redux dispatch 了一個(gè)初始化的 action ({ type: "@@redux/INIT" })。reducer的入?yún)?b>(state, action)。state還沒(méi)有被初始化,自然為undefined。
如何讀取store中的state?
Redux為我們提供了store.getState()方法。
import { createStore } from "redux" const reducer_2 = function (state = {}, action) { console.log("reducer_2 was called with state", state, "and action", action) return state; } const store_2 = createStore(reducer_2) // 輸出: reducer_2 was called with state {} and action { type: "@@redux/INIT" } console.log("store_2 state after initialization:", store_2.getState()) // 輸出: store_2 state after initialization: {}
如何dispatch action?
我們需要使用store.dispatch(action)方法。
// 接以上代碼 const anAction = { type : "AN_ACTION" } store_2.dispatch(anAction); // 輸出:reducer_2 was called with state {} and action { type: "AN_ACTION" }combineReducers
combineReducer用于合并Reducers,并且合并對(duì)應(yīng)的State。
const userReducer = function (state = {}, action) { console.log("userReducer was called with state", state, "and action", action) switch (action.type) { // etc. default: return state; } } const itemsReducer = function (state = [], action) { console.log("itemsReducer was called with state", state, "and action", action) switch (action.type) { // etc. default: return state; } } import { createStore, combineReducers } from "redux" const reducer = combineReducers({ user : userReducer, items : itemsReducer }) // 輸出: // userReducer was called with state {} and action { type: "@@redux/INIT" } // userReducer was called with state {} and action { type: "@@redux/PROBE_UNKNOWN_ACTION_9.r.k.r.i.c.n.m.i" } // itemsReducer was called with state [] and action { type: "@@redux/INIT" } // itemsReducer was called with state [] and action { type: "@@redux/PROBE_UNKNOWN_ACTION_4.f.i.z.l.3.7.s.y.v.i" } var store_0 = createStore(reducer) // 輸出: // userReducer was called with state {} and action { type: "@@redux/INIT" } // itemsReducer was called with state [] and action { type: "@@redux/INIT" } console.log("store_0 state after initialization:", store_0.getState()) // 輸出: // store_0 state after initialization: { user: {}, items: [] }回過(guò)頭來(lái)看看文章開(kāi)頭的數(shù)據(jù)流向圖
View組件通過(guò)click等事件,dispatch一個(gè)(actionCreator返回的)action,通過(guò)Store把當(dāng)前狀態(tài)state和action傳遞給訂閱者reducer函數(shù),reducer返回一個(gè)新的狀態(tài)存儲(chǔ)在Store中,Store又把新的State傳遞給View組件觸發(fā)組件更新。
為了將Redux和React聯(lián)系到一起。就需要用到React-Redux這個(gè)庫(kù)。
import { connect } from "react-redux" const containerComponent = connect(mapStateToProps, mapDispatchToProps)(presentationalComponent)
簡(jiǎn)單來(lái)說(shuō),mapStateToProps和mapDispatchToProps就是分別把Redux的state,和dispatch(action)映射到React組件中作為props。connect將展示組件(presentationalComponent)封裝成高階的容器組件(containerComponent)。state的更新意味著props更新。
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/84464.html
摘要:概念是一個(gè)狀態(tài)管理容器使用可以更好的管理和監(jiān)測(cè)組件之間需要通信的數(shù)據(jù)。參考源碼參考鏈接 redux概念 redux是一個(gè)狀態(tài)管理容器,使用redux可以更好的管理和監(jiān)測(cè)組件之間需要通信的數(shù)據(jù)。 redux基本原則 單一數(shù)據(jù)源 在redux中,整個(gè)應(yīng)用保持一個(gè)數(shù)據(jù)源,數(shù)據(jù)源是一個(gè)樹(shù)形的結(jié)構(gòu) 狀態(tài)只讀 狀態(tài)只讀意思是不能直接修改,需要通過(guò)dispatch action方式才可以,返回的是一...
摘要:大多的初學(xué)者都會(huì)使用中間件來(lái)處理異步請(qǐng)求,其理解簡(jiǎn)單使用方便具體使用可參考官方文檔。源碼的源碼非常簡(jiǎn)潔,出去空格一共只有行,這行中如果不算上則只有行。官方文檔中的一節(jié)講解的非常好,也確實(shí)幫我理解了中間件的工作原理,非常推薦閱讀。 總覺(jué)得文章也應(yīng)該是有生命力的,歡迎關(guān)注我的Github上的博客,這里的文章會(huì)依據(jù)我本人的見(jiàn)識(shí),逐步更新。 大多redux的初學(xué)者都會(huì)使用redux-thunk...
摘要:用法源碼由在年創(chuàng)建的科技術(shù)語(yǔ)。我們除去源碼校驗(yàn)函數(shù)部分,從最終返回的大的來(lái)看。這個(gè)返回值無(wú)法被識(shí)別。洋蔥模型我們來(lái)看源碼源碼每個(gè)都以作為參數(shù)進(jìn)行注入,返回一個(gè)新的鏈。改變?cè)冀M數(shù),是一種副作用。 @(Redux)[|用法|源碼] Redux 由Dan Abramov在2015年創(chuàng)建的科技術(shù)語(yǔ)。是受2014年Facebook的Flux架構(gòu)以及函數(shù)式編程語(yǔ)言Elm啟發(fā)。很快,Redux因其...
摘要:前端進(jìn)階進(jìn)階構(gòu)建項(xiàng)目一配置最佳實(shí)踐狀態(tài)管理之痛點(diǎn)分析與改良開(kāi)發(fā)中所謂狀態(tài)淺析從時(shí)間旅行的烏托邦,看狀態(tài)管理的設(shè)計(jì)誤區(qū)使用更好地處理數(shù)據(jù)愛(ài)彼迎房源詳情頁(yè)中的性能優(yōu)化從零開(kāi)始,在中構(gòu)建時(shí)間旅行式調(diào)試用輕松管理復(fù)雜狀態(tài)如何把業(yè)務(wù)邏輯這個(gè)故事講好和 前端進(jìn)階 webpack webpack進(jìn)階構(gòu)建項(xiàng)目(一) Webpack 4 配置最佳實(shí)踐 react Redux狀態(tài)管理之痛點(diǎn)、分析與...
摘要:瀏覽器端使用的和集成使用時(shí)會(huì)用到中路由分類基于提供的和事件來(lái)保持和的同步。路由剖析在上面的示例中是轉(zhuǎn)發(fā)的樞紐在這個(gè)中轉(zhuǎn)站有很多線路通過(guò)開(kāi)關(guān)可以啟動(dòng)列車的運(yùn)行乘坐列車就可以發(fā)現(xiàn)新大陸。 引言 在使用react做復(fù)雜的spa開(kāi)發(fā)中,開(kāi)發(fā)中必不可少的就是react-router,它使用Lerna管理多個(gè)倉(cāng)庫(kù), 在browser端常使用的幾個(gè)如下所示 react-router 提供了路由的...
閱讀 383·2023-04-25 16:38
閱讀 1497·2021-09-26 09:46
閱讀 3342·2021-09-08 09:35
閱讀 2793·2019-08-30 12:54
閱讀 3260·2019-08-29 17:06
閱讀 1032·2019-08-29 14:06
閱讀 3356·2019-08-29 13:00
閱讀 3473·2019-08-28 17:53