React-redux uses Hook and class component writing for state management

 

 1. Introduction

React-ReduxYes Reduxofficial Reactbinding library. It enables your Reactcomponents to read data Redux storefrom it and storedispatch actionsto update the data

2. Project construction

1. The react project builds    npx create-react-app app

2. Install redux     npm i redux

3. Install react-redux  npm i react-redux

3. Project use

①React-Redux provides <Provider/>components that enable your entire app to access Redux storethe data in:

src/index.js

import React from "react";
import { createRoot } from 'react-dom/client'
import App from './App.jsx'
// 引入
import store from './store'
// 引入 react-redux
import { Provider } from 'react-redux'
const root = createRoot(document.getElementById('root'))
root.render(
  <Provider store={store}>
    <App />
  </Provider>
  
)

src/store/index.js

import { createStore, combineReducers } from 'redux'

import{ num,books} from './reducer.js'

// 合并
const rootReducer = combineReducers({books,num})
const  store = createStore(rootReducer)
export default store

src/store/reducer.js

import {NUM_ADD,NUM_REDUCE,BOOKS_ADD} from './reducer-types'
export function num(state = 0, action) {
    console.log('action', action);
    switch (action.type) {
        case NUM_ADD:
            return state + action.payload
        case NUM_REDUCE:
            return state - action.payload
        default:
            return state
    }
}
export function books(state = ['redux', 'react-redux'], action) {
    switch (action.type) {
        case BOOKS_ADD:
            return [action.payload, ...state]
        default:
            return state
    }
}

src/store/reducer-types.js

export const NUM_ADD = '/num/add'
export const NUM_REDUCE='/num/reduce'
export const BOOKS_ADD = '/books/add'

②Used in class components

src/App.jsx

import React from "react";
import { connect } from 'react-redux'
import Hook from "./Hook";
import {NUM_ADD,NUM_REDUCE,BOOKS_ADD} from './store/reducer-types'
class App extends React.Component {
    handlerAdd = () => {
        this.props.subCount()
    }
    handlerReduce = () => {
        this.props.divideCount(1)
    }
    render() {
        let {num,books,addBooks} = this.props
        return (
            <>
                <h1>app组件(类组件)--- num:{num}</h1>
                <button onClick={this.handlerAdd}>点击派发事件num+10</button>
                <button onClick={this.handlerReduce}>点击派发事件num-1</button>
                <ul>
                    {books.map((item,index)=>(<li key={index}>{item}</li>))}
                </ul>
                <button onClick={()=>{addBooks('vue')}}>点击追加</button>
                <Hook></Hook>
            </>
        )
    }
}
// state 仓库数据
// props 父亲传递过来的数据
const mapStateToProps = (state, props) => ({...state,...props })
// 方法
const mapDispatchToProps = dispatch => (
    {
        subCount: () => dispatch({ type: NUM_ADD, payload: 10 }),
        divideCount: (payload) => dispatch({ type: NUM_REDUCE, payload }),
        addBooks: (payload) => dispatch({ type: BOOKS_ADD, payload })
    }
)
// 位置不能颠倒
export default connect( mapStateToProps,mapDispatchToProps)(App)

③Used in Hook

import{ useSelector,useDispatch } from 'react-redux'
import {BOOKS_ADD,NUM_ADD} from './store/reducer-types'
function Hook(){
    // 获取
    let num = useSelector(({num})=>num)
    let books = useSelector((state)=>state.books)
    let dispatch = useDispatch()
    let bookeredux = ()=>{
        dispatch({type:BOOKS_ADD,payload:'node'})
    }
    return(
        <>
        <h1>Hook组件---num:{num}</h1>
        <button onClick={()=>dispatch({type:NUM_ADD,payload:1})}>点击派发事件num+1</button>
        <ul>
            {books.map((item,index)=>(<li key={index}>{item}</li>))}
        </ul>
            <button onClick={bookeredux}>点击追加</button>
        </>
    )
}
export default Hook

Four, renderings

 

Guess you like

Origin blog.csdn.net/A20201130/article/details/125754699
Recommended