redux的详细使用

一. 在项目中安装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);

实际截图

image.png

四.完整代码

// 导入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);

image.png

五. nodeJs中支持 ES6的语法(node版本在13.2.0以后的只需要加这个)

image.png

六. redux 结构划分

实际截图

image.png

代码步骤如下:(首先创建一个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));
  }
}

实际截图

image.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容

  • 前言 Redux的使用教程非常多,官网的todo就是个不错的例子,还有其他技术网站上的一些例子也很不错。但这些例子...
    aimmarc阅读 486评论 0 2
  • 前言 学习redux首先要知道redux是什么。官网介绍的redux是js状态容器。黑人问号脸??? 在我的理解中...
    DomChange阅读 1,425评论 0 2
  • http://gaearon.github.io/redux/index.html ,文档在 http://rac...
    jacobbubu阅读 79,900评论 35 198
  • 前言 记得开始接触 react 技术栈的时候,最难理解的地方就是 redux。全是新名词:reducer、stor...
    React大法好阅读 354评论 0 0
  • 本文将会不断更新和整理。 Store 首先要区分 store和 state?state是应用状态,一般本质上是一个...
    fullbook阅读 2,511评论 1 1