其他分享
首页 > 其他分享> > Redux

Redux

作者:互联网

Redux

1、redux是什么?

分四块内容

  1. actionTypes
  2. actions => {type, payload}
  3. reducer
  4. store

redux三大原则

  1. 单一数据源
  2. State 是只读的
  3. 使用纯函数来执行修改
2、provider
3、connect
1、把redux中state映射成的props传递到组件中去   // 获取state数据
const mapStatetoProps = (state,ownProps)=>{
    // state  redux存储的数据
    // ownProps   组件调用时传过来的props
    // 返回一个对象
}

2、把dispatch操作封装在当前函数里,传递到组件中   // 封装方法
const mapDispatchtoProps = (dispatch, ownProps)=>{
    // 返回一个对象
    return {
        fetchList:()=>{
            axios.get('路径')
            .then(res=>{
                // 触发dispatch
                dispatch({
                    type:'FETCH_LIST',
                    payload:res.data
                })
            })
        }
    }
    
}

3、合并props
const mergeProps = (stateProps, dispatchProps, ownProps)=>{
    // stateProps 是mapStateToProps的返回值
    // dispatchProps 是mapDispatchtoProps的返回值
    // ownProps 是调用时传入的props
    return {...stateProps, ...dispatchProps, ...ownProps}
    
}

4、可选配置项
const options = {
    pure:true
    // pure:表示state需要深拷贝才会响应
    // true 深拷贝(默认true 深拷贝)
    // false 浅拷贝深拷贝都可以
}
4、reducer
5、深拷贝和浅拷贝
5、store

reducers 存储数据和修改数据

applyMiddleware 应用的中间件

6、combineReducers // 合并
import {combineReducers} from 'redux';
import cart from './cart';
import my from './my';

export default combineReducers({
    cart,
    my
})

标签:redux,const,state,props,拷贝,Redux,ownProps
来源: https://blog.csdn.net/weixin_45290863/article/details/97611498