Vue2(状态管理Vuex)

目录

  • 一,状态管理Vuex
  • 二,state状态
  • 三,mutations
  • 四,actions
  • 五,modules
  • 最后

一,状态管理Vuex

Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态,并以相应的规则保证状态以一种可预测的方式发生变化。

在这里插入图片描述

Vuex的核心:state、mutations、actions

state:存储公共的一些数据
mutations:定义一些方法来修改state中的数据,数据怎么改变
actions: 使用异步的方式来触发mutations中的方法进行提交。
此部分的代码我们在vue-cli中使用

二,state状态

声明

import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex)

export default new Vuex.Store({
  state: {
    count:11
  },
  mutations: {

  },
  actions: {

  }
})

使用

// 直接在模板中使用
<template>
  <div>
     vuex中的状态数据count:{{ $store.state.count }}
  </div>
</template>
// 在方法中使用
ceshi(){
  console.log("Vuex中的状态数据count:",this.$store.state.count);
    this.$router.push({
      path:"/ceshi"
    },()=>{},()=>{})
  }

在这里插入图片描述

在计算属性中使用

当一个组件需要获取多个状态的时候,将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题,我们可以使用 mapState 辅助函数帮助我们生成计算属性,让你少按几次键。

// 在组件中导入mapState函数。mapState函数返回的是一个对象
import {mapState} from 'vuex'
// 在组件中导入mapState函数。mapState函数返回的是一个对象
<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>|
      <el-button @click="gouwucheclick">购物车</el-button>
      <el-button @click="ceshi">测试</el-button>
      <br>
      vuex中的状态数据count:{{ $store.state.count }}
      <br>{{ count }}
      <br> doubleCount:{{ doubleCount }}
    </div>
    <router-view/>
  </div>
</template>

<script>
import {mapState} from 'vuex'
  export default{
    data(){
      return{
        baseCount:10
      }
    },
    methods:{
      gouwucheclick(){
        this.$router.push({
          path:"/gouwuche"
        },()=>{},()=>{})
      },
      ceshi(){
        
        console.log("Vuex中的状态数据count:",this.$store.state.count);
        this.$router.push({
          path:"/ceshi"
        },()=>{},()=>{})
      }
    },
    computed:mapState({
      count:'count',
      doubleCount(state){
        return state.count * 2 + this.baseCount
      } 
    })
  }
</script>

在这里插入图片描述
使用展开运算符

在之前的示例中,不方便和本地的计算属性混合使用,下面我们使用展开运算符,这样就可以和本地的计算属性一起使用。

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>|
      <el-button @click="gouwucheclick">购物车</el-button>
      <el-button @click="ceshi">测试</el-button>
      <br>本地的计算属性{{ localCount }}
      <br>
      vuex中的状态数据count:{{ $store.state.count }}
      <br>{{ count }}
      <br> doubleCount:{{ doubleCount }}
    </div>
    <router-view/>
  </div>
</template>

<script>
import {mapState} from 'vuex'
  export default{
    data(){
      return{
        baseCount:10
      }
    },
    methods:{
      gouwucheclick(){
        this.$router.push({
          path:"/gouwuche"
        },()=>{},()=>{})
      },
      ceshi(){
        this.baseCount=5 
        console.log("Vuex中的状态数据count:",this.$store.state.count);
        this.$router.push({
          path:"/ceshi"
        },()=>{},()=>{})
      }
    },
    computed:{
      localCount(){
        // 本地的计算属性,没有vuex中的状态参与
        return this.baseCount + 1
      },
      ...mapState({
        count:'count',
        doubleCount(state){
          return state.count * 2 + this.baseCount
        }
      })
    }
  }
</script>

在这里插入图片描述

三,mutations

state中的数据是只读的,不能直接进行修改。想要修改state中数据的唯一途径就是调用mutation方法。
使用commit()函数,调用mutation函数。

注意:mutation中只能执行同步方法。

  mutations: {
    // 在mutations中定义方法,在方法中修改state
    // state是状态,num是额外的参数
   add(state,num){
     state.count = state.count +num
   }
 },

直接调用

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>|
      <el-button @click="gouwucheclick">购物车</el-button>
      <el-button @click="ceshi">测试</el-button>
      <el-button @click="addcount">调用add</el-button>
      <br>本地的计算属性{{ localCount }}
      <br>
      vuex中的状态数据count:{{ $store.state.count }}
      <br>{{ count }}
      <br> doubleCount:{{ doubleCount }}
    </div>
    <router-view/>
  </div>
</template>

<script>
import {mapState} from 'vuex'
  export default{
    data(){
      return{
        baseCount:10
      }
    },
    methods:{
      gouwucheclick(){
        this.$router.push({
          path:"/gouwuche"
        },()=>{},()=>{})
      },
      ceshi(){
        this.baseCount=5 
        console.log("Vuex中的状态数据count:",this.$store.state.count);
        this.$router.push({
          path:"/ceshi"
        },()=>{},()=>{})
      },
      addcount(){
        this.$store.commit('add',1)
      }
    },
    computed:{
      localCount(){
        // 本地的计算属性,没有vuex中的状态参与
        return this.baseCount + 1
      },
      ...mapState({
        count:'count',
        doubleCount(state){
          return state.count * 2 + this.baseCount
        }
      })
    }
  }
</script>

演示2

使用辅助函数(mapMutations)简化

import {mapMutations} from 'vuex'

四,actions

actions中执行的方法可以是异步的
actions中要修改状态state中的内容,需要通过mutation。
在组件中调用action需要调用dispatch()函数。

步骤如下:
声明action方法

actions: {
    delayAdd(countext,num){
      // 在action中调用mutation中的方法
      setTimeout(()=>{
        countext.commit('add',num)
      },2000)
    }
  },

直接调用action方法

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>|
      <el-button @click="gouwucheclick">购物车</el-button>
      <el-button @click="ceshi">测试</el-button>
      <el-button @click="addcount">调用add</el-button>
      <el-button @click="addcountAction">调用actions中的方法</el-button>
      <br>本地的计算属性{{ localCount }}
      <br>
      vuex中的状态数据count:{{ $store.state.count }}
      <br>{{ count }}
      <br> doubleCount:{{ doubleCount }}
    </div>
    <router-view/>
  </div>
</template>

<script>
import {mapState} from 'vuex'
  export default{
    data(){
      return{
        baseCount:10
      }
    },
    methods:{
      gouwucheclick(){
        this.$router.push({
          path:"/gouwuche"
        },()=>{},()=>{})
      },
      ceshi(){
        this.baseCount=5 
        console.log("Vuex中的状态数据count:",this.$store.state.count);
        this.$router.push({
          path:"/ceshi"
        },()=>{},()=>{})
      },
      addcount(){
        this.$store.commit('add',1)
      },
      addcountAction(){
        this.$store.dispatch('delayAdd',2)
      }
    },
    computed:{
      localCount(){
        // 本地的计算属性,没有vuex中的状态参与
        return this.baseCount + 1
      },
      ...mapState({
        count:'count',
        doubleCount(state){
          return state.count * 2 + this.baseCount
        }
      })
    }
  }
</script>

五,modules

在复杂的项目中,我们不能把大量的数据堆积到store中,这样store的内容就太多,而且比较凌乱,不方便管理。所以就是出现了module。他将原有的store切割成了一个个的module。每个module中都有自己的store、mutation、actions和getter

store中定义一个module

const storeModuleA={
    state:{
        countA:10
    },
    mutations:{
        addA(state){
            state.countA++
            console.log("moduleA:"+state.countA);
        },
        //  此方法和root中的方法名字一致 
        add(state){
            console.log("moduleA:"+state.countA);
        }
    }
}

export default storeModuleA

在store.js中,导入并注册此module

import Vue from 'vue'
import Vuex from 'vuex'
import storeModuleA from './stroeModuleA'

Vue.use(Vuex)

export default new Vuex.Store({
  state: {
    count:11,
  },
  mutations: {
    // state是状态,num是额外的参数
    add(state,num){
      console.log('root中的add');
      state.count = state.count +num
    }
  },
  actions: {
    delayAdd(countext,num){
      // 在action中调用mutation中的方法
      setTimeout(()=>{
        countext.commit('add',num)
      },2000)
    }
  },
  modules: {
    a:storeModuleA
  }
})

在组件中使用子模块中的状态

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>|
      <el-button @click="gouwucheclick">购物车</el-button>
      <el-button @click="ceshi">测试</el-button>
      <el-button @click="addcount">调用add</el-button>
      <el-button @click="addcountAction">调用actions中的方法</el-button>
      <br>本地的计算属性{{ localCount }}
      <br>
      vuex中的状态数据count:{{ $store.state.count }}
      <br>{{ count }}
      <br> doubleCount:{{ doubleCount }}

      <hr>
      {{ $store.state.a.countA }}
      <el-button @click="addMoudleAaddA">调用a模块中的mutation-addA</el-button>
    </div>
    <router-view/>
  </div>
</template>

<script>
import {mapState} from 'vuex'
  export default{
    data(){
      return{
        baseCount:10
      }
    },
    methods:{
      gouwucheclick(){
        this.$router.push({
          path:"/gouwuche"
        },()=>{},()=>{})
      },
      ceshi(){
        this.baseCount=5 
        console.log("Vuex中的状态数据count:",this.$store.state.count);
        this.$router.push({
          path:"/ceshi"
        },()=>{},()=>{})
      },
      addcount(){
        this.$store.commit('add',1)
      },
      addcountAction(){
        this.$store.dispatch('delayAdd',2)
      },
      addMoudleAaddA(){
        this.$store.commit('addA')
      },
    },
    computed:{
      localCount(){
        // 本地的计算属性,没有vuex中的状态参与
        return this.baseCount + 1
      },
      ...mapState({
        count:'count',
        doubleCount(state){
          return state.count * 2 + this.baseCount
        }
      })
    }
  }
</script>

示例4


在store.js中,导入并注册此module

在组件中使用子模块中的状态

没有声明namespace的情况
子模块中的mutation在没有使用namespace的情况下,这些方法会注册到root中。
如果子模块中的mutation和root中的一样。则都会被调用。

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>|
      <el-button @click="gouwucheclick">购物车</el-button>
      <el-button @click="ceshi">测试</el-button>
      <el-button @click="addcount">调用add</el-button>
      <el-button @click="addcountAction">调用actions中的方法</el-button>
      <br>本地的计算属性{{ localCount }}
      <br>
      vuex中的状态数据count:{{ $store.state.count }}
      <br>{{ count }}
      <br> doubleCount:{{ doubleCount }}

      <hr>
      {{ $store.state.a.countA }}
      <el-button @click="addMoudleAaddA">调用a模块中的mutation-addA</el-button>
      <el-button @click="addMoudleAadd">调用a模块中的mutation-add</el-button>
    </div>
    <router-view/>
  </div>
</template>

<script>
import {mapState} from 'vuex'
  export default{
    data(){
      return{
        baseCount:10
      }
    },
    methods:{
      gouwucheclick(){
        this.$router.push({
          path:"/gouwuche"
        },()=>{},()=>{})
      },
      ceshi(){
        this.baseCount=5 
        console.log("Vuex中的状态数据count:",this.$store.state.count);
        this.$router.push({
          path:"/ceshi"
        },()=>{},()=>{})
      },
      addcount(){
        this.$store.commit('add',1)
      },
      addcountAction(){
        this.$store.dispatch('delayAdd',2)
      },
      addMoudleAaddA(){
        this.$store.commit('addA')
      },
      addMoudleAadd(){
        this.$store.commit('add')
      }
    },
    computed:{
      localCount(){
        // 本地的计算属性,没有vuex中的状态参与
        return this.baseCount + 1
      },
      ...mapState({
        count:'count',
        doubleCount(state){
          return state.count * 2 + this.baseCount
        }
      })
    }
  }
</script>

在这里插入图片描述
声明namespace的情况
在module中添加

import Vue from 'vue'
import Vuex from 'vuex'
import storeModuleA from './stroeModuleA'

Vue.use(Vuex)

export default new Vuex.Store({
  state: {
    count:11,
  },
  mutations: {
    // state是状态,num是额外的参数
    add(state,num){
      console.log('root中的add');
      state.count = state.count +num
    }
  },
  actions: {
    delayAdd(countext,num){
      // 在action中调用mutation中的方法
      setTimeout(()=>{
        countext.commit('add',num)
      },2000)
    }
  },
  modules: {
    a:{
      namespaced:true,
      ...storeModuleA
    }
  }
})

在组件中调用,加上别名即可

this.$store.commit('a/addA');
<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link>|
      <el-button @click="gouwucheclick">购物车</el-button>
      <el-button @click="ceshi">测试</el-button>
      <el-button @click="addcount">调用add</el-button>
      <el-button @click="addcountAction">调用actions中的方法</el-button>
      <br>本地的计算属性{{ localCount }}
      <br>
      vuex中的状态数据count:{{ $store.state.count }}
      <br>{{ count }}
      <br> doubleCount:{{ doubleCount }}

      <hr>
      {{ $store.state.a.countA }}
      <el-button @click="addMoudleAaddA">调用a模块中的mutation-addA</el-button>
      <el-button @click="addMoudleAadd">调用a模块中的mutation-add</el-button>
    </div>
    <router-view/>
  </div>
</template>

<script>
import {mapState} from 'vuex'
  export default{
    data(){
      return{
        baseCount:10
      }
    },
    methods:{
      gouwucheclick(){
        this.$router.push({
          path:"/gouwuche"
        },()=>{},()=>{})
      },
      ceshi(){
        this.baseCount=5 
        console.log("Vuex中的状态数据count:",this.$store.state.count);
        this.$router.push({
          path:"/ceshi"
        },()=>{},()=>{})
      },
      addcount(){
        this.$store.commit('add',1)
      },
      addcountAction(){
        this.$store.dispatch('delayAdd',2)
      },
      addMoudleAaddA(){
        this.$store.commit('addA')
      },
      addMoudleAadd(){
        this.$store.commit('a/add')
      }
    },
    computed:{
      localCount(){
        // 本地的计算属性,没有vuex中的状态参与
        return this.baseCount + 1
      },
      ...mapState({
        count:'count',
        doubleCount(state){
          return state.count * 2 + this.baseCount
        }
      })
    }
  }
</script>

在这里插入图片描述

最后

送大家一句话:不是井里没有水,而是挖的不够深

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/93075.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

opencv 水果识别+UI界面识别系统,可训练自定义的水果数据集

目录 一、实现和完整UI视频效果展示 主界面&#xff1a; 测试图片结果界面&#xff1a; 自定义图片结果界面&#xff1a; 二、原理介绍&#xff1a; 图像预处理 HOG特征提取算法 数据准备 SVM支持向量机算法 预测和评估 完整演示视频&#xff1a; 完整代码链接 一、…

基于SpringBoot的在线聊天系统

基于SpringBoot的在线聊天系统 一、系统介绍二、功能展示三.其他系统实现五.获取源码 一、系统介绍 源码编号&#xff1a;F-S03点击查看 项目类型&#xff1a;Java EE项目 项目名称&#xff1a;基于SpringBoot的在线聊天系统 项目架构&#xff1a;B/S架构 开发语言&#x…

线性代数的学习和整理13: 函数与向量/矩阵

目录 1 函数与 向量/矩阵 2 函数的定义域&#xff0c;值域&#xff0c;到达域 3 对应关系 1 函数与 向量/矩阵 下面两者形式类似&#xff0c;本质也类似 函数的&#xff1a; axy &#xff0c;常规函数里&#xff0c;a,x,y 一般都是单个数矩阵&#xff1a; AXY &a…

【CSS】CSS 背景设置 ( 背景半透明设置 )

一、背景半透明设置 1、语法说明 背景半透明设置 可以 使用 rgba 颜色值设置半透明背景 ; 下面的 CSS 样式中 , 就是 设置黑色背景 , 透明度为 20% ; background: rgba(0, 0, 0, 0.2);颜色的透明度 alpha 取值范围是 0 ~ 1 之间 , 在使用时 , 可以 省略 0.x 前面的 0 , 直接…

在线OJ平台项目

一、项目源码 Online_Judge yblhlk/Linux课程 - 码云 - 开源中国 (gitee.com) 二、所用技术与开发环境 1.所用技术: MVC架构模式 (模型&#xff0d;视图&#xff0d;控制器) 负载均衡系统设计 多进程、多线程编程 C面向对象编程 & C 11 & STL 标准库 C Boost 准标…

Docker打包JDK20镜像

文章目录 Docker 打包 JDK 20镜像步骤1.下载 jdk20 压缩包2.编写 dockerfile3.打包4.验证5.创建并启动容器6.检查 Docker 打包 JDK 20镜像 步骤 1.下载 jdk20 压缩包 https://www.oracle.com/java/technologies/downloads/ 2.编写 dockerfile #1.指定基础镜像&#xff0c;并…

网络:RIP协议

1. RIP协议原理介绍 RIP是一种比较简单的内部网关协议&#xff08;IGP协议&#xff09;&#xff0c;RIP基于距离矢量的贝尔曼-福特算法(Bellman - Ford)来计算到达目的网络的最佳路径。最初的RIP协议开发时间较早&#xff0c;所以在带宽、配置和管理方面的要求也较低。 路由器运…

如何管理多个大型数据中心,这回总算说全了!

当谈及现代科技基础设施中的关键元素时&#xff0c;数据中心无疑占据着核心地位。然而&#xff0c;无论多么强大的硬件和网络系统&#xff0c;都无法摆脱电力供应的依赖。 在电力中断或突发情况下&#xff0c;数据中心的稳定运行将受到威胁&#xff0c;进而导致业务中断和数据丢…

Postman测WebSocket接口

01、WebSocket 简介 WebSocket是一种在单个TCP连接上进行全双工通信的协议。 WebSocket使得客户端和服务器之间的数据交换变得更加简单&#xff0c;允许服务端主动向客户端推送数据。在WebSocket API中&#xff0c;浏览器和服务器只需要完成一次握手&#xff0c;两者之间就直…

pandas数据分析——groupby得到分组后的数据

groupbyagg分组聚合对数据字段进行合并拼接 Pandas怎样实现groupby聚合后字符串列的合并&#xff08;四十&#xff09; groupby得到分组后的数据 pandas—groupby如何得到分组里的数据 date_range补齐缺失日期 在处理时间序列的数据中&#xff0c;有时候会遇到有些日期的数…

Linux安装FRP(内网穿透)

项目简介需求背景 1.FileBrowser访问地址&#xff1a;http://X.X.X.X:8181&#xff0c;该地址只能在局域网内部访问而无法通过互联网访问&#xff0c;想要通过互联网 访问到该地址需要通过公网IP来进行端口转发&#xff0c;通常家里的路由器IP都不是公网IP&#xff0c;通常公司…

如何用Dockerfile部署LAMP架构

目录 构建LAMP镜像&#xff08;Dockerfile&#xff09; 第一步 创建工作目录 第二步 编写dockerfile文件 Dockerfile文件配置内容 第三步 编写网页执行文件 第四步 编写启动脚本 第五步 赋权并且构建镜像 第六步 检查镜像 第七步 创建容器 第八步 浏览器测试 构建LA…

mysql 存储引擎系列 (一) 基础知识

当前支持存储引擎 show engines&#xff1b; 显示默认存储引擎 select default_storage_engine; show variables like ‘%storage%’; 修改默认引擎 set default_storage_enginexxx 或 set default_storage_enginexxx; my.ini 或者 my.cnf ,需要重启 服务才能生效 systemctl …

mongodb聚合排序的一个巨坑

现象&#xff1a; mongodb cpu动不动要100%&#xff0c;如下图 分析原因&#xff1a; 查看慢日志发现&#xff0c;很多条这样的查询&#xff0c;一直未执行行完成&#xff0c;占用大量的CPU [{$match: {"tags.taskId": "64dae0a9deb52d2f9a1bd71e",grnty: …

【Unity学习笔记】DOTween(1)基础介绍

本文中大部分内容学习来自DOTween官方文档 文章目录 什么是DOTween&#xff1f;DOSetOnTweenerSequenceTweenNested tween 初始化使用方式 什么是DOTween&#xff1f; DOTween是一个动画插件&#xff0c;Tween是补间的意思。这个插件以下简称DOT&#xff0c;DOT很方便使用&…

可扩展的单核至四核Cortex-A53@1.4GHz工业级核心板规格书

1 核心板简介 创龙科技SOM-TL62x是一款基于TI Sitara系列AM62x单/双/四核ARM Cortex-A53 + 单核ARM Cortex-M4F多核处理器设计的高性能低功耗工业核心板,通过工业级B2B连接器引出2x TSN Ethernet、9x UART、3x CAN-FD、GPMC、2x USB2.0、CSI、DISPLAY等接口。处理器ARM Corte…

C++string类

目录 一、为什么学习string 二、标准库中的string类 2.1 string类的简介 2.2 成员类型 2.3 成员函数 2.3.1 构造、析构与运算符重载 2.3.2 迭代器 2.3.3 容量 2.3.4 元素的存取 2.3.5 修改 2.3.6 字符串操作 2.4 成员常量 2.5 非成员函数重载 三、string编程题练…

【Unity3D赛车游戏】【六】如何在Unity中为汽车添加发动机和手动挡变速?

&#x1f468;‍&#x1f4bb;个人主页&#xff1a;元宇宙-秩沅 &#x1f468;‍&#x1f4bb; hallo 欢迎 点赞&#x1f44d; 收藏⭐ 留言&#x1f4dd; 加关注✅! &#x1f468;‍&#x1f4bb; 本文由 秩沅 原创 &#x1f468;‍&#x1f4bb; 收录于专栏&#xff1a;Uni…

【NVIDIA CUDA】2023 CUDA夏令营编程模型(二)

博主未授权任何人或组织机构转载博主任何原创文章&#xff0c;感谢各位对原创的支持&#xff01; 博主链接 本人就职于国际知名终端厂商&#xff0c;负责modem芯片研发。 在5G早期负责终端数据业务层、核心网相关的开发工作&#xff0c;目前牵头6G算力网络技术标准研究。 博客…

高中信息技术教资考试模拟卷(22下)

2022 年下半年全国教师资格考试模考卷一 &#xff08;高中信息技术&#xff09; 一、单项选择题&#xff08;本大题共 15 小题&#xff0c;每小题 3 分&#xff0c;共 45 分&#xff09; 1.2006 年 10 月 25 日&#xff0c;深圳警方成功解救出一名被网络骗子孙某…