赞
踩
函数式编程中有一个非常重要的概念叫纯函数,JavaScript符合函数式编程的范式,所以也有纯函数的概念
确定的输入,一定会产生确定的输出
函数在执行过程中,不能产生副作用
表示在执行一个函数时,除了返回函数值之外,还对调用函数产生了附加的影响,
比如修改了全局变量,修改参数或者改变外部的存储
纯函数在执行的过程中就是不能产生这样的副作用
副作用往往是产生bug的 “温床”
对数组操作的两个函数:
slice就是一个纯函数,不会修改数组本身,而splice函数不是一个纯函数
slice:slice截取数组时不会对原数组进行任何操作,而是生成一个新的数组
splice:splice截取数组, 会返回一个新的数组, 也会对原数组进行修改
纯函数在函数式编程中非常重要 :
可以安心的编写和安心的使用
在写的时候保证了函数的纯度,只是单纯实现业务逻辑即可,不需要关心传入的内容是如何获得的或者依赖其他的外部变量是否已经发生了修改
在用的时候,确定的输入内容不会被任意篡改,并且确定的输入,一定会有确定的输出
React中就要求无论是函数还是class声明一个组件,这个组件都必须像纯函数一样,保护它们的props不被修改
store : 用于存储共享数据的仓库
action : store中所有数据的变化,必须通过派发(dispatch)action来更新
action是一个普通的JavaScript对象,用来描述这次更新的type和content
reducer : reducer是一个纯函数,将state和action联系在一起
reducer做的事情就是将传入的state和action结合起来生成一个新的state
整个应用程序的state被存储在一颗object tree中,并且这个object tree只存储在一个 store 中
Redux并没有强制让我们不能创建多个Store,但是那样做并不利于数据的维护
单一的数据源可以让整个应用程序的state变得方便维护、追踪、修改
唯一修改State的方法一定是触发action,不要试图在其他地方通过任何的方式来修改State
这样就确保了View或网络请求都不能直接修改state,它们只能通过action来描述自己想要如何修改state
这样可以保证所有的修改都被集中化处理,并且按照严格的顺序来执行,所以不需要担心race condition(竟态)的问题
通过reducer将 旧state和 actions联系在一起,并且返回一个新的State
随着应用程序的复杂度增加,我们可以将reducer拆分成多个小的reducers,分别操作不同state tree的一部分
但是所有的reducer都应该是纯函数,不能产生任何的副作用
01. 创建一个新的项目文件夹: learn-redux
02. 进入文件夹后进行项目初始化
npm init -y
03. 安装redux
npm install redux
04. 创建src目录,以及其中的index.js文件
05. 修改package.json可以执行index.js
也可不修改,直接控制台输入 node src/index.js
-
- "scripts": {
- // node v13.2.0之后,添加属性:"type": "module",就可以在node中对ES6模块化的支持
- "type": "module",
- "start": "node src/index.js"
- },
06. 在src中创建目录store,并创建index.js
-
- // 需要配置下type,否则的话直接使用commonjs也是可以的
- import { createStore } from 'redux';
-
- // 1. 定义初始化数据
- const initialState = {
- name: 'coder',
- age: 18,
- counter: 100
- };
-
- // 2. 定义reducer纯函数
- // 2.1 reducer函数的第一个参数是state,第二个参数是action
- // 2.2 reducer函数必须返回一个新的state,这个state会覆盖原来的state
- // 2.3 reducer函数中,不能修改原来的state,必须返回一个新的state
-
- // 第一次调用reducer函数的时候,state是undefined,所以给state设置默认值,只会在第一次调用的时候生效
- const reducer = (state = initialState, action) => {
-
- // 2.4 在这里,根据action的type,来决定如何修改state,返回一个新的state
- switch (action.type) {
- case 'xxx' : return {...state,...}
- }
- // 2.5 没有数据更新的时候,返回一个新的state
- return state;
- };
-
- // 3. 创建store
- export const store = createStore(reducer);
-
- // 1. 导入store
- import { store } from './store/index.js';
-
- // 2. 拿到store中存储的数据
- console.log(store.getState()); // { name: 'coder', age: 18, counter: 100 }
执行代码
-
- // 导入store
- import { store } from './store/index.js';
-
- // 创建一个action对象
- const nameAction = { type: 'change_name', name: 'star' };
- // 进行派发, 派发的时候,会调用reducer函数,传入state和action
- store.dispatch(nameAction)
-
- // 创建一个action对象
- const counterAction = { type: 'increment_counter', number: 10 };
- // 进行派发
- store.dispatch(counterAction);
-
- console.log(store.getState()); // { name: 'star', age: 18, counter: 110 }
在reducer函数中新增判断
-
- const reducer = (state = initialState, action) => {
- // action => { type: 'change_name', name: 'star' }
- switch (action.type) {
- case 'change_name':
- return {
- // 先对原来staet进行解构
- ...state,
- // 再对name进行覆盖
- name: action.name
- };
- case 'increment_counter':
- return { ...state, counter: state.counter + action.number };
- default:
- // 如果没有匹配到action.type,就返回原来的state
- return state;
- }
- };
-
- // 导入store
- import { store } from './store/index.js';
-
- // 监听state的变化, 只要state发生了变化,就会调用回调函数
- // 返回值是一个函数,调用这个函数,就可以取消监听
- const unSubscribe = store.subscribe(() => {
- console.log('state发生了变化');
- console.log(store.getState());
- });
-
- // 派发action => 可以监听到
- store.dispatch({ type: 'change_name', name: 'star' });
-
- // 取消监听
- unSubscribe();
-
- // 派发action => 不会监听到,但是state会发生变化,因为store.dispatch会调用reducer函数
- store.dispatch({ type: 'increment_counter', number: 10 });
-
- // 导入store
- import { store } from './store/index.js';
-
- store.subscribe(() => {
- console.log('state发生了变化', store.getState());
- });
-
- // 动态生成action : actionCreator => 创建action的函数, 返回一个action对象
- const changeNameAction = (name) => ({ type: 'change_name', name });
-
- // store.dispatch({ type: 'change_name', name: 'star' });
- // store.dispatch({ type: 'change_name', name: 'coderstar' });
- store.dispatch(changeNameAction('star'));
- store.dispatch(changeNameAction('coderstar'));
如果将所有的逻辑代码写到一起,那么当redux变得复杂时代码就难以维护
对代码进行拆分,将store、reducer、action、constants拆分成一个个文件
创建store/index.js文件
-
- import { createStore } from 'redux';
-
- import reducer from './reducer.js';
-
- // 创建store
- export const store = createStore(reducer);
创建store/reducer.js文件
-
- import { CHANGE_NAME, INCREMENT_COUNTER } from './constants.js';
-
- // 1. 定义初始化数据
- const initialState = {
- name: 'coder',
- age: 18,
- counter: 100
- };
-
- // 2. 定义reducer
- export const reducer = (state = initialState, action) => {
- switch (action.type) {
- case CHANGE_NAME:
- return {
- // 先对原来staet进行解构
- ...state,
- // 再对name进行覆盖
- name: action.name
- };
- case INCREMENT_COUNTER:
- return { ...state, counter: state.counter + action.number };
- default:
- // 如果没有匹配到action.type,就返回原来的state
- return state;
- }
- };
创建store/actionCreators.js文件 => 用于生成action
-
- // Description: Action Creators
-
- import { CHANGE_NAME, INCREMENT_COUNTER } from './constants.js';
-
- // 修改name名字的action
- export const changeNameAction = (name) => ({ type: CHANGE_NAME, name });
-
- // 修改counter的action
- export const incrementCounterAction = (number) => ({ type: INCREMENT_COUNTER, number });
创建store/constants.js文件 => 用于定义type常量
-
- // Desc: constants for actions
-
- export const CHANGE_NAME = 'change_name';
- export const INCREMENT_COUNTER = 'increment_counter';
npm install redux
index.js
- import { createStore } from 'redux';
- import { reducer } from './reducer';
-
- export const store = createStore(reducer);
constants.js
- export const CHANGE_COUNTER = 'change_counter';
-
- export const CHANGE_BANNER = 'change_banner';
reducer.js
- import { CHANGE_BANNER, CHANGE_COUNTER } from './constants';
-
- const initialState = {
- counter: 20,
- bannerList: []
- };
-
- export const reducer = (state = initialState, action) => {
- switch (action.type) {
- case CHANGE_COUNTER:
- return { ...state, counter: state.counter + action.counter };
- case CHANGE_BANNER:
- return { ...state, bannerList: [...state.bannerList, ...action.bannerList] };
- default:
- return state;
- }
- };
actionCreatores.js
- import { CHANGE_COUNTER, CHANGE_BANNER } from './constants';
-
- // 修改counter的action
- export const changeCounterAction = (counter) => ({ type: CHANGE_COUNTER, counter });
-
- // 修改bannerList的action
- export const changeBannerAction = (bannerList) => ({ type: CHANGE_BANNER, bannerList });
Home.jsx
- import React, { PureComponent } from 'react';
- import { store } from '../store';
- import { changeCounterAction } from '../store/actionCreatores.js';
-
- export class Home extends PureComponent {
- constructor(porps) {
- super(porps);
-
- this.state = {
- // 从store中获取counter的值,赋予初始化值
- counter: store.getState().counter
- };
- }
- componentDidMount() {
- // 监听store的变化
- store.subscribe(() => {
- this.setState({
- counter: store.getState().counter
- });
- });
- }
- changeCounter(num) {
- // 改变store中的值,通过dispatch派发action
- store.dispatch(changeCounterAction(num));
- }
- render() {
- const { counter } = this.state;
- return (
- <>
- <h2>Home counter : {counter}</h2>
- <button onClick={(e) => this.changeCounter(5)}>+5</button>
- {' '}
- <button onClick={(e) => this.changeCounter(10)}>+10</button>
- </>
- );
- }
- }
-
- export default Home;
Profily.jsx
- import React, { PureComponent } from 'react';
- import { store } from '../store';
- import { changeCounterAction } from '../store/actionCreatores.js';
-
- export class Profily extends PureComponent {
- constructor(porps) {
- super(porps);
-
- this.state = {
- // 从store中获取counter的值,赋予初始化值
- counter: store.getState().counter
- };
- }
- componentDidMount() {
- // 监听store的变化
- store.subscribe(() => {
- this.setState({
- counter: store.getState().counter
- });
- });
- }
- changeCounter(num) {
- // 改变store中的值,通过dispatch派发action
- store.dispatch(changeCounterAction(num));
- }
- render() {
- const { counter } = this.state;
- return (
- <>
- <h2>Profily counter : {counter}</h2>
- <button onClick={(e) => this.changeCounter(-5)}>-5</button>
- {' '}
- <button onClick={(e) => this.changeCounter(-10)}>-10</button>
- </>
- );
- }
- }
-
- export default Profily;
- import React, { PureComponent } from 'react';
- import Home from './page/Home';
- import Profily from './page/Profily';
-
- import { store } from './store';
-
- export class App extends PureComponent {
- constructor(porps) {
- super(porps);
-
- this.state = {
- // 从store中获取counter的值,赋予初始化值
- counter: store.getState().counter
- };
- }
- componentDidMount() {
- // 监听store的变化
- store.subscribe(() => {
- this.setState({
- counter: store.getState().counter
- });
- });
- }
- render() {
- const { counter } = this.state;
- return (
- <div style={{ textAlign: 'center', marginTop: '100px' }}>
- <h2>App counter : {counter}</h2>
- <hr />
- <hr />
- <hr />
- <Home />
- <hr />
- <hr />
- <hr />
- <Profily />
- </div>
- );
- }
- }
-
- export default App;
redux和react没有直接的关系,完全可以在React, Angular, Ember, jQuery, or vanilla
JavaScript中使用Redux
redux依然是和React库结合的更好
redux官方帮助我们提供了 react-redux 的库,可以直接在项目中使用,并且实现的逻辑会更加的严谨和高效
将组件和store连接
安装 => npm install react-redux
- import React from 'react';
- import ReactDOM from 'react-dom/client';
- import App from './App.jsx';
- // 引入Provider组件, 用于给整个项目提供一个公共的store
- import { Provider } from 'react-redux';
- import { store } from './store';
-
- const root = ReactDOM.createRoot(document.querySelector('#root'));
-
- root.render(
- <React.StrictMode>
- {/* 给整个项目提供一个公共的store */}
- <Provider store={store}>
- <App />
- </Provider>
- </React.StrictMode>
- );
需要进行映射,state、dispatch都需要映射
- import React, { PureComponent } from 'react';
- // 1. 引入connect,用于连接组件和redux,返回一个高阶组件
- import { connect } from 'react-redux';
- import { changeCounterAction } from '../store/actionCreatores';
-
- export class About extends PureComponent {
- changeCounter(num) {
- // 4. 从props中取出changeCounter,不再从state中取,因为state中的值已经被映射到props中了
- const { changeCounter } = this.props;
- // 执行了下面定义的方法,相当于调用了dispatch(changeCounterAction(num))
- changeCounter(num);
- }
- render() {
- // 3. 从props中取出counter,不再从state中取,因为state中的值已经被映射到props中了
- const { counter } = this.props;
- return (
- <>
- <h2>About : {counter}</h2>
- <button onClick={(e) => this.changeCounter(8)}>+8</button>
- {' '}
- <button onClick={(e) => this.changeCounter(-8)}>-8</button>
- </>
- );
- }
- }
-
- /**
- * connect => connect()()返回一个高阶组件,第一个()传入两个参数,第二个()传入一个组件,返回一个新的 高阶组件声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/510717推荐阅读
相关标签
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。