Redux總結
首先沒有使用Redux的時候,我們的程式是這樣寫的。 對於需要改變的資料,我們需要使用state,程式碼如下:
export default class App extends Component {
//定義了state的物件格式 通過setState方法來渲染介面
state = { input: "" }
render() {
return (
<View style={styles.container}>
<TextInput style={styles.text} value={this.state.input}
placeholder='請輸入你的內容' onChangeText={(text) => this.setState({input:text})}/>
<Text style={styles.text}> 輸入的內容:{this.state.input } </Text>
</View>
);
}
}
那如果使用 redux要怎麼做呢?
Redux是什麼?傳送門
首先了解Redux是JS庫,增加了 store、action、reducer 的概念,規範了全域性一個 state,從而只需要根據這個 state 就能回朔出整個應用的狀態。元件通過 dispatch 將 action 傳到 store,reducer 根據原來的 state 以及 action,返回新的 state,元件根據新的 state 渲染介面。
原來的state是儲存在元件類內部,現在由Redux統一管理,存放在stone裡面,改變他的唯一方法就是傳送action。Redux接收到action後,會交給對應的reducer去處理。
action是JS物件,按照約定,action 內必須使用一個字串型別的 type 欄位來表示將要執行的動作。
{
type: '新增action',
error: ' ',
payload:' '
}
//或者通過函式的方式返回一個action
export const reduceActionCreate = (text) => {
return {
type: '減少action',
payload:{
text:' '
}
}
}
Reducers 指定了應用狀態的變化如何響應 actions 併傳送到 store 的, actions 只是描述了事情來了,誰來處理事情呢?當然就是我們們的Reducers。
處理完事情難道就白乾了,肯定得有所返回?首先我們們得先設計State的格式。如上面程式碼const defaultState = { input: "" , other:' 123 '}
reducer 不神祕,其實就是一個純函式,接收舊的 state 和 action,返回新的 state。(previousState, action) => newState
//開始的時候 previousState為undefined狀態,所有要加個初始值
function handlerReducers(previousState = defaultState , action) => {
switch (action.type) {
case '新增action':
//複寫上一狀態的input屬性
return {...previousState,input:action.payload}
case '減少action':
return {...previousState,input:action.payload}
default:
return state
}
}
當然每個 reducer只能管理自己的資料處理,如果有多個場景需要多個reducer,那要這麼做呢?
import { combineReducers } from 'redux'
//aaaa,bbbb兩個reducer,通過combineReducers函式 建立多Reducer的物件
const todoApp = combineReducers({
AA: aaaa,
BB: bbbb
})
export default todoApp
Store其實就是處理容器,Reducer要處理action必須在我這做,怎麼做呢?首先我們們得先建立storelet store = createStore( 我們們的Reducers )
然後傳送處理actionstore.dispatch(要處理的action)
到這裡我們們基本瞭解了Redux的使用方法,但是如何在我們的react專案使用呢?
這裡需要再強調一下:Redux 和 React 之間沒有關係。Redux 支援 React、Angular、Ember、jQuery 甚至純 JavaScript
既然沒有關係,怎麼樣讓他建立關係呢?傳送門
下面我們們簡單敘述下如何在我們的專案中配置Redux~~~
- 安裝 redux react-redux(rn和redux之間互動的一個庫)
npm install --save redux react-redux
- 在app.js的控制元件的根路徑上,Provider元件去包裹。需要設定store屬性,通過createStore函式來建立。
import { Provider} from "react-redux";
render() {
return (
<Provider store={createStore(reducers)}>
<MainScreen/>
</Provider>
);
}
//reducers的程式碼
import { combineReducers } from "redux";
const defaultStatus = { input: '' ,other:'123'}
export default combineReducers({
nullReducer: inputProcess
})
function inputProcess(pStatus = defaultStatus,action) {
switch (action.type) {
case 'aaa':
return {...pStatus,input:action.payload}
default:
return pStatus;
}
}
- 然後我們們要把redux和react建立聯絡。我們們需要用到connect的函式
import { connect } from "react-redux";
connect函式需要兩個引數mapStateToProps(state),mapDispatchToProps(dispatch),從方法名可以看出通過對映的方式將redux和react建立聯絡。mapStateToProps是將 reducers裡面的state對映成控制元件裡面的prop呼叫,mapDispatchToProps是將原先需要dispatch(action)的函式對映成props裡的函式呼叫。如下:
//將state 對映為 this.props.inputProps
function mapStateToProps(state){
return {
inputProps: state.nullReducer
}
}
//想在元件訪問state資料
this.props.inputProps.****
//將需要Dispatch(Action)對映到props 下面例子將changeText函式對映changeTextActions
function mapDispatchToProps(dispatch) {
return {
changeTextActions: bindActionCreators(changeText, dispatch),
};
}
//下面在想呼叫changeText方法,就呼叫prop裡面changeTextActions函式
this.props.changeTextActions(text)
想了解bindActionCreators() 點選這裡
//connect(**,**)方法返回也是個函式wrapWithConnect(元件)
connect(mapStateToProps,mapDispatchToProps)(MainScreen);
//當然也可以簡潔的寫法
export default connect((state)=>{ return { inputProps:state.nullReducer } },{changeTextActions})(MainScreen);
到這裡就完成redux的配置和程式碼修改。效果和文章開頭的效果差不多,但是程式碼多了很多。
相關文章
- Flutter Redux 食用總結FlutterRedux
- Redux的一些總結Redux
- Redux 學習總結筆記Redux筆記
- react-redux實踐總結ReactRedux
- redux的一些外掛總結(redux-actions,reselect)Redux
- Redux-Saga 初識和總結Redux
- Redux中文文件閱讀總結——快速入門Redux
- Flutter 入門與實戰(六十五):Redux 總結篇FlutterRedux
- 記一次redux-saga的專案實踐總結Redux
- Redux教程2:連結ReactReduxReact
- Redux進階系列1:React+Redux專案結構最佳實踐ReduxReact
- Redux在React中的使用小結ReduxReact
- [譯]如何結合React Hooks來使用ReduxReactHookRedux
- javaSE總結(轉+總結)Java
- Redux 基礎教程以及結合 React 使用方式ReduxReact
- ReduxRedux
- 如何合理佈置React/Redux的目錄結構ReactRedux
- 總結?
- this總結
- 總結
- redux && react-redux原始碼解析ReduxReact原始碼
- 不能算是總結的年終總結薦
- 「比賽總結」AT ABC 358 總結
- 樹結構總結
- ISP 連結總結
- React系列—React+Redux工程目錄結構劃分ReactRedux
- React 入門-redux 和 react-reduxReactRedux
- redux中介軟體之redux-thunkRedux
- JavaScript基礎總結(三)——陣列總結JavaScript陣列
- 【總結】二叉樹概念大總結二叉樹
- 團隊總結 - Beta版總結會議
- Redux with HooksReduxHook
- redux原理Redux
- 巧用ReduxRedux
- react reduxReactRedux
- 深入理解redux之從redux原始碼到react-redux的原理Redux原始碼React
- React native 專案進階(redux, redux saga, redux logger)React NativeRedux
- Html總結HTML