vuex与map映射实现方法梳理分析

作者:旺仔好吃糖 时间:2023-07-02 16:34:04 

Vuex

vuex执行过程

🎈相当于一个公共的资源库,保存共有的数据

🎈使用场景:点击按钮后,将数据保存到store身上,跳转路由后使用

🎈将actions,mutations(操作数据),state(储存数据),都交给store管理,storez在vc和vm上都有

🎈其中state里面是自定义的一些变量,需要用来保存数据;mutations是用来触发事件,相当于方法,用户需要通过触发这个方法,借此来保存数据;第二个参数为用户传入的值,然后在方法中赋值给state中变量,也可以准备getters对state中的数据进行加工

🎈在组件中通过dispatch将数据传给actions,在actions中的方法中通过commit将数据交给mutations

vuex与map映射实现方法梳理分析

vuex的使用

📢1. store在vc和vm中均有

📢2. 组件中读取vuex中的数据:$store.state.sum

📢3. 组件中修改vuex中的数据:$store.dispatch(‘action中的方法名’,数据)或 $store.commit(‘mutation中的方法名’,数据)

📢4. 如果组件中没有过多的逻辑业务要求,组件中也可以越过action,即不写dispatch直接编写commit

  • 创建store

//创建store文件夹下的index.js,在main.js中引用,并在new Vue({})加入
//index.js文件中
//store下的index.js
//该文件用于创建Vuex中最重要的Store
import Vue from 'vue'
//引入Vuex
import Vuex from 'vuex'
-----------------------
Vue.use(Vuex)
   //创建store
   const store = new Vuex.Store({
       actions,
       mutations,
       state,
       getters(放入store中操作的属性)
   })
   //暴露/导出store
 export default store
  • 在组件中读取index.js中state中的数据

//组件中
$store.state.sum
  • 组件中修改vuex中的数据:$store.dispatch(‘action中的方法名’,数据)或 $store.commit(‘mutations中的方法名’,数据)

methods:{
           increment(){
               //没有任何操作逻辑,可以直接通过commit和mutations对话
               // this.$store.dispatch('jia',this.n)\
               this.$store.commit('JIA',this.n)
           },
            decrement(){
               // this.$store.dispatch('jian',this.n)
                this.$store.commit('JIAN',this.n)
            },
            incrementOdd(){
              this.$store.dispatch('jiaOdd',this.n)
            },
            incrementWait(){
              this.$store.dispatch('jiaWait',this.n)
            }
  }
  • index.js中对state中数据的操作(actions,mutations,state,getters)

//准备actions----用于响应组件中的动作
const actions ={
   //context为上下文 里面含有state等很多
   // jia(context,value){
   //     console.log('actions中的jia被调用了',value);
   //     context.commit('JIA',value)
   // },
   // jian(context,value){
   //     context.commit('JIAN',value)
   // },
   jiaOdd(context,value){
       if(context.state.sum %2){
           context.commit('JIA',value)
       }
   },
   jiaWait(context,value){
       setTimeout(()=>{
           context.commit('JIA',value)
       },500)
   }
}
//准备mutations---用于操作数据(state)
   const mutations = {
       JIA(state,value){
           console.log('mutations被调用了',state,value);
           state.sum += value
       },
       JIAN(state,value){
           state.sum -= value
       }
   }
   //准备state ---- 用于存储数据
   const state ={
       sum:0
   }

getters配置

1.概念:当state中的数据需要通过加工后再使用时,可以使用getters加工

2.再store.js中追加getters配置

---------
//准备getters----用于将state中的数据进行加工
const getters ={
   bigSum(state){
       return state.sum*10
   }
}
//创建store
const store = new Vuex.Store({
   actions,
   mutations,
   state,
   getters
})
//暴露,导出store
export default store

3.在组件中读取数据:$store.getters.bigSum

Map映射

  • mapState方法

computed:{
   //借助mapState生成计算属性,sum,school等(对象写法)
   ...mapState({sum:'sum',school:'school'})
   //借助mapState生成计算属性,sum,school等(数组写法)
   ...mapState(['sum','school'])
}
  • mapGetters方法:用于帮助我们映射getters中的数据为计算属性

computed:{
   //借助mapGetters生成计算属性,sum,school等(对象写法)
   ...mapGetters({bigSum:'bigSum'})
   //借助mapGetters生成计算属性,sum,school等(数组写法)
   ...mapGetters(['bigSum'])
}
  • mapActions方法

methods:{
   //靠mapActions生成 incrementOdd,incrementWait(对象形式)
   ...mapActions({incrementOdd:'jiaOdd',incrementWait:'jiaWait'})
    //靠mapActions生成 incrementOdd,incrementWait(数组形式)
   ...mapActions(['jiaOdd','jiaWait'])
}
  • mapMutations方法

methods:{
   //靠mapMutations生成 incrementOdd,decrement(对象形式)
   ...mapMutations({increment:'JIA',decrement:'JIAN'})
    //靠mapMutations生成 JIA,JIAN(数组形式)
   ...mapMutations(['JIA','JIAN'])
}

vuex与map映射实现方法梳理分析

但由于this.n参数是自己写进去的,生成方法时无法写入,会自动生成value传入(默认为event),所以可以在组件结构中调用方法时直接传入参数

vuex与map映射实现方法梳理分析

注:mutations和actions的映射需要写在methods中,getters和state的映射需要写在computed中

来源:https://blog.csdn.net/m0_63338686/article/details/126794104

标签:vuex,map,映射
0
投稿

猜你喜欢

  • HTTP 错误 500.100 - 内部服务器错误 - ASP 错误

    2008-09-12 13:07:00
  • 在Django中使用ElasticSearch

    2022-11-18 11:01:22
  • 教你一分钟在win10终端成功安装Pytorch的方法步骤

    2023-09-01 19:32:38
  • Python 获取div标签中的文字实例

    2023-03-27 01:53:53
  • python定时按日期备份MySQL数据并压缩

    2024-01-22 11:39:22
  • SQL Server字符串切割函数

    2012-08-21 10:18:43
  • node.js 中国天气预报 简单实现

    2024-05-13 10:05:44
  • Python高级特性与几种函数的讲解

    2021-12-09 03:37:17
  • Oracle 常用的SQL语句

    2009-08-02 07:09:00
  • keras 自定义loss层+接受输入实例

    2023-09-23 16:37:55
  • Python 正则表达式匹配字符串中的http链接方法

    2022-02-11 03:02:13
  • 用python完成一个分布式事务TCC

    2022-12-02 02:14:05
  • mysql密码过期导致连接不上mysql

    2024-01-22 12:28:06
  • Python实现识别XSS漏洞的方法详解

    2023-07-27 10:51:53
  • Python中try excpet BaseException(异常处理捕获)的使用

    2023-07-30 16:21:37
  • Python解决鸡兔同笼问题的方法

    2023-01-05 23:21:37
  • CentOS 8 安装 MySql并设置允许远程连接的方法

    2024-01-28 23:17:11
  • JS实现点击表头表格自动排序(含数字、字符串、日期)

    2024-05-02 16:16:53
  • js找出5个数中最大的一个数和倒数第二大的数实现方法示例小结

    2024-04-28 09:49:10
  • python实现斐波那契递归函数的方法

    2022-03-22 19:54:49
  • asp之家 网络编程 m.aspxhome.com