一. 在项目中安装redux
安装命令: yarn add redux / npm i redux --save
二.导入redux包
1. demo 中的导入方式:
const redux = require('redux');
2. 项目中导入
import redux from "redux"
三.代码演示
// 导入redux (不能使用ES6 的方式导入)
const redux = require("redux");
// redux 的三个核心
// 1. 定义初始化值
const initialState = {
counter: 0,
};
// reducer
// 3.
function reducer(state = initialState, action) {
console.log(state);
console.log(action);
}
// store (创建的时候需要传入一个reducer)
// 4.
const store = redux.createStore(reducer);
// actions
// 2. 要派发的数据
const action1 = { type: "INCREMENT" };
const action2 = { type: "DECREMENT" };
const action3 = { type: "ADD_NUMBER", num: 5 }; // 递增
const action4 = { type: "SUB_NUMBER", num: 12 }; // 递减
store.dispatch(action1);
store.dispatch(action2);
store.dispatch(action2);
store.dispatch(action3);
store.dispatch(action4);
实际截图
四.完整代码
// 导入redux (不能使用ES6 的方式导入)
const redux = require("redux");
// redux 的三个核心
// 1. 定义初始化值
const initialState = {
counter: 0,
};
// reducer
// 2.
function reducer(state = initialState, action) {
console.log(state);
console.log(action);
switch (action.type) {
case "INCREMENT":
return {
...state, // 对原来的初始化值中的counter做一个拷贝
counter: state.counter + 1,
};
case "DECREMENT":
return {
...state,
counter: state.counter - 1,
};
case "ADD_NUMBER":
return {
...state,
counter: state.counter + action.num,
};
case "SUB_NUMBER":
return {
...state,
counter: state.counter - action.num,
};
default:
return state;
}
}
// store (创建的时候需要传入一个reducer)
// 3.
const store = redux.createStore(reducer);
// 5.订阅store的修改
store.subscribe(() => {
console.log("state发生了改变....", store.getState().counter);
});
// actions
// 4. 要派发的数据
const action1 = { type: "INCREMENT" };
const action2 = { type: "DECREMENT" };
const action3 = { type: "ADD_NUMBER", num: 5 }; // 递增
const action4 = { type: "SUB_NUMBER", num: 12 }; // 递减
store.dispatch(action1);
store.dispatch(action2);
store.dispatch(action2);
store.dispatch(action3);
store.dispatch(action4);
五. nodeJs中支持 ES6的语法(node版本在13.2.0以后的只需要加这个)
六. redux 结构划分
实际截图
代码步骤如下:(首先创建一个store的文件夹)
1. index.js
// 1.导入:
import redux from "redux";
// 2. 引入reducer
import reducer from "./reducer.js";
// 3.创建一个store
const store = redux.createStore(reducer)
export default store;
2. reducer.js
// 引入需要使用的常量
import { ADD_NUMBER, SUB_NUMBER, INCREMENT, DECREMENT } from "./constants.js";
const defaultState = {
counter: 0,
};
function reducer(state = defaultState, action) {
switch (action.type) {
case ADD_NUMBER:
return {
...state,
counter: state.counter + action.num,
};
case SUB_NUMBER:
return {
...state,
counter: state.counter - action.num,
};
case INCREMENT:
return {
...state,
counter: state.counter + 1,
};
case DECREMENT:
return {
...state,
counter: state.counter - 1,
};
default:
return state;
}
}
export default reducer;
3. constants.js
// 定义需要使用的常量
// 专门定义常量的js文件
export const ADD_NUMBER = "ADD_NUMBER";
export const SUB_NUMBER = "SUB_NUMBER";
export const INCREMENT = "INCREMENT"
export const DECREMENT = "DECREMENT"
4. actionCreators.js
// 引入需要使用的 常量
import { ADD_NUMBER, SUB_NUMBER,INCREMENT,DECREMENT } from "./constants.js";
// 加
export const addAction = (num) => {
return {
type: ADD_NUMBER,
num,
};
};
// 减
export const subAction = (num) => ({
type: SUB_NUMBER,
num,
});
export const incAction = () => ({
type: INCREMENT
})
export const decAction = () => ({
type: DECREMENT
})
5. index.js / page.js/....
// 需要使用的页面
import store from "./store/index.js";
// 引入addAction 函数
import { addAction, subAction,incAction,decAction } from "./store/actionCreators.js";
// 订阅
store.subscribe(() => {
console.log(store.getState());
});
// 一般不会把这个函数写在这里面的 单独抽取一个文件来写
// function addAction(num) {
// return {
// type: "Add_NUMBER",
// num,
// };
// }
// 派发
store.dispatch(addAction(10)); // 这种相当于是调用了addAction函数了 把数据写活了
store.dispatch(addAction(15)); // 这种相当于是调用了addAction函数了 把数据写活了
store.dispatch(subAction(8));
store.dispatch(subAction(5));
store.dispatch(incAction(5));
store.dispatch(decAction(5));
整个的使用流程就是这样的
七.React--Redux脚手架中的使用:
想要取redux 中的store的值 就要这种取值: store.getState().counter
在home.js 页面取值
Hone.js 文件具体代码
import React, { PureComponent } from "react";
// 1.引入store
import store from "../store";
// 2. 引入常量的定义
import { subAction } from "../store/actionCreators";
export default class About extends PureComponent {
constructor(props) {
super(props);
this.state = {
// 想要取redux 中的store的值 就要这种取值: store.getState().counter
counter: store.getState().counter,
};
}
// 4. 设置一个订阅初始化,
componentDidMount() {
// 他有一个返回值
this.unSubscribe = store.subscribe(() => {
// 这个你订阅了 到时候销毁的时候 你也要把这个清理掉
this.setState({
counter: store.getState().counter,
});
});
}
componentWillUnmount() {
// 5. 当即将销毁的时候 清楚 这个订阅
this.unSubscribe();
}
render() {
const { counter } = this.state;
return (
<div>
<hr />
<h1>About</h1>
<h2>当前计数: {counter}</h2>
<button onClick={e=>this.decrement()}>-1</button>
<button onClick={e=>this.subNumber(5)}>-5</button>
</div>
);
}
decrement() {
// 3. 使用
store.dispatch(subAction(1));
}
subNumber(num) {
// 3.使用
store.dispatch(subAction(num));
}
}
about.js文件具体代码
import React, { PureComponent } from "react";
// 1.引入store
import store from "../store";
// 2. 引入常量的定义
import { subAction } from "../store/actionCreators";
export default class About extends PureComponent {
constructor(props) {
super(props);
this.state = {
// 想要取redux 中的store的值 就要这种取值: store.getState().counter
counter: store.getState().counter,
};
}
// 4. 设置一个订阅初始化,
componentDidMount() {
// 他有一个返回值
this.unSubscribe = store.subscribe(() => {
// 这个你订阅了 到时候销毁的时候 你也要把这个清理掉
this.setState({
counter: store.getState().counter,
});
});
}
componentWillUnmount() {
// 5. 当即将销毁的时候 清楚 这个订阅
this.unSubscribe();
}
render() {
const { counter } = this.state;
return (
<div>
<hr />
<h1>About</h1>
<h2>当前计数: {counter}</h2>
<button onClick={e=>this.decrement()}>-1</button>
<button onClick={e=>this.subNumber(5)}>-5</button>
</div>
);
}
decrement() {
// 3. 使用
store.dispatch(subAction(1));
}
subNumber(num) {
// 3.使用
store.dispatch(subAction(num));
}
}