Redux中subscribe的作用及说明
更新时间:2023年10月07日 11:30:58 作者:*唔西迪西*
由于redux使用这方面有很多的不解,不是很熟练,所以我查找资料,进行一个总结,希望可以巩固知识,并且能帮助到需要的人,所以我会写的比较清晰简单明了点,若有不对之处,请大家纠正
Redux中subscribe的作用
redux的使用步骤过程
首先安装redux
安装命令:
npm install redux
redux使用过程(原理)
- 使用函数createStore创建store数据点
- 创建Reducer。它要改变的组件,它获取state和action,
- 生成新的state 用subscribe监听每次修改情况
- dispatch 一个派发方法,将action 派发给reducer 更改state
代码如下:
创建一个组件
import React, { Component } from 'react' import store from "./store"; import axios from 'axios'; export class DD extends Component { constructor(props){ super(props); this.state = store.getState(); //subscribe当store中数据发生变化就会更新数据 store.subscribe(()=>{ this.setState(store.getState()) }) } render() { return ( <div> hengheng,我很生气 </div> ) } } export default DD
主要用subscribe监听store中每次修改情况
store.subscribe(()=>{ this.setState(store.getState()) })
Redux的store.subscribe()监听
import createStore from 'Redux' const { store } = createStore(reducer) store.subscribe(放上view的更新函数)//对于React 则是render和setState
此后 更新函数的每一次变化都会触发view的重新自动渲染
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
相关文章
使用react-virtualized实现图片动态高度长列表的问题
一般我们在写react项目中,同时渲染很多dom节点,会造成页面卡顿, 空白的情况。为了解决这个问题,今天小编给大家分享一篇教程关于react-virtualized实现图片动态高度长列表的问题,感兴趣的朋友跟随小编一起看看吧2021-05-05Can't perform a React state update on an unmoun
这篇文章主要为大家介绍了Can't perform a React state update on an unmounted component报错解决方法详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-12-12React+TypeScript项目中使用CodeMirror的步骤
CodeMirror被广泛应用于许多Web应用程序和开发工具,之前做需求用到过codeMirror这个工具,觉得还不错,功能很强大,所以记录一下改工具的基础用法,对React+TypeScript项目中使用CodeMirror的步骤感兴趣的朋友跟随小编一起看看吧2023-07-07
最新评论