Vuex的同步异步存值取值

1. vue中各个组件之间传值

1.父子组件

父组件-->子组件,通过子组件的自定义属性:props

子组件-->父组件,通过自定义事件:this.$emit(‘事件名‘,参数1,参数2,...);

2.非父子组件或父子组件

通过数据总数Bus,this.$root.$emit(‘事件名‘,参数1,参数2,...)

3.非父子组件或父子组件

更好的方式是在vue中使用vuex

方法1: 用组件之间通讯。这样写很麻烦,并且写着写着,估计自己都不知道这是啥了,很容易写晕。

方法2: 我们定义全局变量。模块a的数据赋值给全局变量x。然后模块b获取x。这样我们就很容易获取到数据

2. Vuex

官方解释:Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。可以想象为一个“前端数据库”(数据仓库),

让其在各个页面上实现数据的共享包括状态,并且可操作

Vuex分成五个部分:

1.State:单一状态树

2.Getters:状态获取

3.Mutations:触发同步事件

4.Actions:提交mutation,可以包含异步操作

5.Module:将vuex进行分模块

3. vuex使用步骤

3.1 安装

npm install vuex -S

安装完成后 package.json中会有

"vuex": "^3.1.1"

3.2 创建store模块,分别维护state/actions/mutations/getters

3.3 在store/index.js文件中新建vuex的store实例,并注册上面引入的各大模块

import Vue from ‘vue‘
import Vuex from ‘vuex‘
import state from ‘./state‘
import getters from ‘./getters‘
import actions from ‘./actions‘
import mutations from ‘./mutations‘

Vue.use(Vuex)

const store = new Vuex.Store({
     state,
     getters,
     actions,
     mutations
 })

 export default store

3.4 在main.js中导入并使用store实例

import store from ‘./store‘
new Vue({
  el: ‘#app‘,
  data() {
    return {
      /* 总线*/
      Bus:new Vue({

      })
    }
  },
  router,
  store,
  components: {
    App
  },
  template: ‘<App/>‘
})

4. vuex的核心概念:store、state、getters、mutations、actions

4.0 store

每一个Vuex应用的核心就是store(仓库),store基本上就是一个容器,它包含着你的应用中大部分的状态 (state)。

const store = new Vuex.Store({

state,    // 共同维护的一个状态,state里面可以是很多个全局状态

getters,  // 获取数据并渲染

actions,  // 数据的异步操作

mutations  // 处理数据的唯一途径,state的改变或赋值只能在这里

})

4.1 state.js(保存数据的容器)

export default {
    resturantName: ‘飞歌餐馆‘
}

4.2 getters.js(getXxx)

export default {
  getResturantName: (state) => {
    return state.resturantName;
  }
}

注1:getters将state中定义的值暴露在this.$store.getters对象中,我们可以通过如下代码访问

this.$store.getters.resturantName

注2:state状态存储是响应式的,从store实例中读取状态最简单的方法就是在计算属性中返回某个状态,如下:

computed: {

resturantName: function() {

return this.$store.getters.resturantName;

}

}

4.3 mutations(setXxx)

export default {
  // type(事件类型): 其值为setResturantName
  // payload:官方给它还取了一个高大上的名字:载荷,其实就是一个保存要传递参数的容器
  setResturantName: (state, payload) => {
    state.resturantName = payload.resturantName;
  }
}

4.4 actions.js

export default {
  setResturantNameAsync: (context, payload) => {
    console.log(‘xxx‘)
    setTimeout(() => {
      console.log(‘yyy‘)
      context.commit(‘setResturantName‘, payload); //Action提交的是mutation
    }, 3000);
    console.log(‘zzz‘)
  },
  doAjax: (context, payload) => {
    //在vuex里面是不能使用vue实例的
    let _this =payload._this;
    let url = _this.axios.urls.SYSTEM_USER_DOLOGIN;
    _this.axios.post(url, {}).then((response) => {
      console.log(‘doAjax...........‘);
      console.log(response);
    }).catch(function(error) {
      console.log(error);
    });
  }
}

Action类似于 mutation,不同在于:

1.Action提交的是mutation,而不是直接变更状态

2.Action可以包含任意异步操作

3.Action的回调函数接收一个 context 上下文参数,注意,这个参数可不一般,它与 store 实例有着相同的方法和属性

但是他们并不是同一个实例,context 包含:

1. state、2. rootState、3. getters、4. mutations、5. actions 五个属性

所以在这里可以使用 context.commit 来提交一个 mutation,或者通过 context.state 和 context.getters 来获取 state 和 getters。

实例 VuexPage1.vue

<template>
    <div>
      <h3 style="margin: 60px;">第一个vuex页面:{{title}}</h3>
      <button @click="changeTitle">餐馆易主</button>
      <button @click="changeTitleAsync">两个月后餐馆易主</button>
      <button @click="doAjax">测试vuex中使用ajax</button>
    </div>
</template>

<script>
    export default{
      data() {
        return {

        };
      },
      methods:{
        changeTitle(){
          this.$store.commit(‘setResturantName‘,{
            resturantName:‘小猪砍刀羊肉馆‘
          });
        },
        changeTitleAsync(){
          /* 异步*/
          this.$store.dispatch(‘setResturantNameAsync‘,{
            resturantName:‘小猪砍刀蛇肉馆‘
          });
        },
        doAjax(){
          this.$store.dispatch(‘doAjax‘,{
            _this:this
          });
        }
      },
      /* 计算属性*/
      computed:{
        title(){
          // return this.$store.state.resturantName;
          return this.$store.getters.getResturantName
        }
      }
    }
</script>

<style>

</style>

VuexPage2.vue

<template>
    <div>
      <h3 style="margin: 60px;">第二个vuex页面:{{title}}</h3>
    </div>
</template>

<script>
    export default{
      data() {
        return {
          title:‘‘
        };
      },
      /* 钩子函数*/
      created(){
        this.title = this.$store.state.resturantName;
      }
    }
</script>

<style>

</style>

将组件挂上

import VuexPage1 from ‘@/views/sys/VuexPage1‘
import VuexPage2 from ‘@/views/sys/VuexPage2‘
{
        path: ‘/sys/VuexPage1‘,
        name: ‘VuexPage1‘,
        component: VuexPage1
      },
      {
        path: ‘/sys/VuexPage2‘,
        name: ‘VuexPage2‘,
        component: VuexPage2
      }

效果:

原文地址:https://www.cnblogs.com/liuwenwu9527/p/11366064.html

时间: 2024-10-18 03:53:59

Vuex的同步异步存值取值的相关文章

Jmeter的JDBC Request,sql参数化及返回值取值

1.JDBC Request面板 Variable Name:数据库连接池的名字,需要与JDBC Connection Configuration的Variable Name Bound Pool名字保持一致Query:填写的sql语句未尾不要加";"Parameter values:参数值Parameter types:参数类型Variable names:保存sql语句返回结果的变量名Result variable name:创建一个对象变量,保存所有返回的结果Query time

localStorage存值取值以及存取JSON,以及基于html5 localStorage的购物车

http://blog.csdn.net/u013267266/article/details/51530611 localStorage.setItem("key","value");//存储变量名为key,值为value的变量 localStorage.key = "value"//存储变量名为key,值为value的变量 localStorage.getItem("key");//获取存储的变量key的值www.it16

关于dom元素上css属性值的取值过程

最近在研究w3c的css标准规范,css2.2版本,虽然早已进入css3时代,但是css3还是继承了很多css2的基础,所以了解css2的很多标准原理,对于理解css核心内容,对写好css,写出高性能的css是很有必要的. 这篇文章写在读了css标准第六章css属性值取值过程相关内容,英文标准地址:https://www.w3.org/TR/CSS22/cascade.html 浏览器渲染页面时,解析dom树之后,一定(标准中用了must)会对每个dom元素都加上css的属性和对应的值: “On

PHP------定义数组,取值数组和遍历数组

PHP数组 特点:可以存储任意类型的数据,可以不连续,可以是索引的也可以是关联的 什么是索引? 就是常见数组的样式,索引从开始,0,1,2,3,定义数组是直接往里面放值,只个索引自动生成,所以一般从0开始的,这样的数组是索引数组,索引是连续的. 什么是关联? 就是我们的哈希表集合,在定义的时候,必须给它一个key,一个values,这两个是关联的,通过key对应的values值是关联的. 1.定义数组 定义数组的第一种方式: 定义简单地索引数组 $a = array(1,2,3); 定义数组的第

用JQUERY为INPUT的TXT类型赋值及取值操作

注意和纯JS操作的区别,一个是对象,一个是字串,如下说明: 在Jquery中,用$("#id")来获得页面的input元素,其相当于document.getElementById("element")但是,该获取的是一个Jquery对象,而不是一个dom element对象.value是dom element对象的属性.所以,使用$("#id").value不能取到值取值的方法如下: var job_name = $("#id_jenk

ThinkPHP源码学习 cookie函数 设置 取值 删除

/** * Cookie 设置.获取.删除 * @param string $name cookie名称 * @param mixed $value cookie值 * @param mixed $option cookie参数 * @return mixed */ 系统内置了一个cookie函数用于支持和简化Cookie的相关操作,该函数可以完成Cookie的设置.获取.删除操作. Cookie设置 cookie('author','津沙港湾','3600'); 执行代码段 $expire =

Bs4 BeautifulSoup取值

原文网址:https://blog.csdn.net/u010244522/article/details/79627073 从网页获取HTML数据后,获取对应标签.属性的值 取值方法主要有以下几种: 1.通过标签名(tag)获取: tag.name        tag对应的type是<class 'bs4.element.Tag'> 2.通过属性(attrs)获取:tag.attrs 通过标签属性获取:    tag["class"]  或     tag.get(&q

Python 字符串——巧取值和列表——巧取值 对比

Python 字符串——巧取值和列表——巧取值 对比 1.字符串取值实例: samp_string = "Whatever you are, be a good one." for i in samp_string: print(i) for i in range(0,len(samp_string)-2,2): print(samp_string[i]+samp_string[i+1]) print('A=',ord("A")) print('65=',chr(6

zabbix默认监控负载取值不准确

今天碰到个负载高引起的问题但是查看zabbix监控并没有报警,检查后发现监控取值与实际服务器内负载不一致. 使用zabbix_get命令在服务器内测试 zabbix默认模板键值 取值内容 [[email protected] ~]# zabbix_get -s 10.99.10.11 -k system.cpu.load[percpu,avg1] 0.228333 正确的取值 [[email protected] ~]# zabbix_get -s 10.99.10.11 -k system.c