目录
加载依赖 npm install vuex -S 下载Vuex最新版本的依赖
导入Vuex的核心组件4个组件,然后通过index.js加载进来
将Vuex对应的index.js挂载到main.js中的vue实例中
解决了前端组件传参的问题,针对当前项目所有的变量进行统一管理,可以理解为前端的数据库
1.State:单一状态树
2.Getters:状态获取
3.Mutations:触发同步事件
4.Actions:提交mutation,可以包含异步操作
5.Module:将vuex进行分模块
vuex的核心概念:store、state、getters、mutations、actions
store
每一个Vuex应用的核心就是store(仓库),store基本上就是一个容器,它包含着你的应用中大部分的状态 (state)。
const store = new Vuex.Store({ state, // 共同维护的一个状态,state里面可以是很多个全局状态 getters, // 获取数据并渲染 actions, // 数据的异步操作 mutations // 处理数据的唯一途径,state的改变或赋值只能在这里 })state
(保存数据的容器)状态,即要全局读写的数据
const state = { resturantName:'飞歌餐馆' }; this.$store.state.resturantName;//不建议getters(getXxx)
获取数据并渲染
const getters = { resturantName: (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; } }
mutations(setXxx)处理数据的唯一途径,state的改变或赋值只能在这里
export default { // type(事件类型): 其值为setResturantName // payload:官方给它还取了一个高大上的名字:载荷,其实就是一个保存要传递参数的容器 setResturantName: (state, payload) => { state.resturantName = payload.resturantName; } }注1:mutations中方法的调用方式
不能直接调用this.$store.mutations.setResturantName('KFC'),必须使用如下方式调用:
this.$store.commit(type,payload); // 1、把载荷和type分开提交 store.commit('setResturantName',{ resturantName:'KFC' }) // 2、载荷和type写到一起 store.commit({ type: 'setResturantName', resturantName: 'KFC' })
注2:一定要记住,Mutation 必须是同步函数。为什么呢?异步方法,我们不知道什么时候状态会发生改变,所以也就无法追踪了
如果我们需要异步操作,Mutations就不能满足我们需求了,这时候我们就需要Actions了
mutations: { someMutation (state) { api.callAsyncMethod(() => { state.count++ }) } }
actions数据的异步(async)操作
注意本篇博客所使用的版本不同: npm i -S vuex@3.6.2
index.js
- 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
state.js
- export default {
- resName:'aaaaa'
- }
router/index.js
- import Vue from 'vue'
- import Router from 'vue-router'
- import HelloWorld from "@/components/HelloWorld";
- import AppMain from "@/components/AppMain";
- import LeftNav from "@/components/LeftNav";
- import TopNav from "@/components/TopNav";
- import Login from "@/views/Login";
- import Reg from "@/views/Reg";
- import Articles from "@/views/sys/Articles";
- import VuexPage1 from "@/views/sys/VuexPage1";
-
-
- Vue.use(Router)
-
- export default new Router({
- routes: [
- {
- path: '/',
- name: 'Login',
- component: Login
- },
- {
- path: '/Login',
- name: 'Login',
- component: Login
- },
- {
- path: '/Reg',
- name: 'Reg',
- component: Reg
- },
- {
- path: '/AppMain',
- name: 'AppMain',
- component: AppMain,
- children:[
- {
- path: '/LeftNav',
- name: 'LeftNav',
- component: LeftNav
- },
- {
- path: '/TopNav',
- name: 'TopNav',
- component: TopNav
- },
- {
- path: '/sys/Articles',
- name: 'Articles',
- component: Articles
- },
- {
- path: '/sys/VuexPage1',
- name: 'VuexPage1',
- component: VuexPage1
- }
- ]
- }
- ]
- })
VuexPage1.vue
- <template>
- <div>
- <p>页面1:欢迎来到{{msg}}p>
- <button @click="buy">盘它button>
- div>
- template>
-
- <script>
- export default {
- name: 'VuexPage1',
- data() {
- return {
-
- }
- },
- methods: {
- buy() {
- // 通过commit方法 会调用mutations.js文件中定义好的方法
- this.$store.commit("setResName", {
- resName: 'KFC'
- })
- }
- },
- computed: {
- msg() {
- // 从vuex的state文件中获取值
- return this.$store.state.resName;
-
- }
- }
- }
- script>
-
- <style>
- style>
运行
VuexPage2.vue
- <div>
- <p>页面2:欢迎来到{{msg}}p>
- div>
-
- <script>
- export default {
- name: 'VuexPage2',
- data () {
- return {
- }
- },
-
- computed:{
- msg(){
- // 从vuex的state文件中获取值
- // return this.$store.state.resName;//不推荐,不安全
- // 通过getters.js文件获取state.js中定义的变量值
- return this.$store.getters.getResName;
- }
- }
- }
- script>
-
- <style scoped>
-
- style>
router/index.js
- import Vue from 'vue'
- import Router from 'vue-router'
- import HelloWorld from "../components/HelloWorld";
- import AppMain from "../components/AppMain";
- import LeftNav from "../components/LeftNav";
- import TopNav from "../components/TopNav";
- import Login from "../views/Login";
- import Reg from "../views/Reg";
- import Articles from "../views/sys/Articles";
- import VuexPage1 from "../views/sys/VuexPage1";
- import VuexPage2 from "../views/sys/VuexPage2";
-
-
- Vue.use(Router)
-
- export default new Router({
- routes: [
- {
- path: '/',
- name: 'Login',
- component: Login
- },
- {
- path: '/Login',
- name: 'Login',
- component: Login
- },
- {
- path: '/Reg',
- name: 'Reg',
- component: Reg
- },
- {
- path: '/AppMain',
- name: 'AppMain',
- component: AppMain,
- children:[
- {
- path: '/LeftNav',
- name: 'LeftNav',
- component: LeftNav
- },
- {
- path: '/TopNav',
- name: 'TopNav',
- component: TopNav
- },
- {
- path: '/sys/Articles',
- name: 'Articles',
- component: Articles
- },
- {
- path: '/sys/VuexPage1',
- name: 'VuexPage1',
- component: VuexPage1
- },
- {
- path: '/sys/VuexPage2',
- name: 'VuexPage2',
- component: VuexPage2
- }
- ]
- }
- ]
- })
mutations.vue
- export default {
- setResName:(state,payload)=>{
- // state对象就对应了state.js中的对象
- // payload载荷 对应的 传递的 json对象参数
- state.resName=payload.resName;
- }
- }
getters.js
- export default {
- getResName:(state)=>{
- return state.resName;
-
- }
- }
运行:
角色管理(VuexPage2)也同样共用了VuexPage1的界面
VuexPage1.vue
- <template>
- <div>
- <p>页面1:欢迎来到{{msg}}p>
- <button @click="buy">盘它button>
- <button @click="buyAsync">最终的店长button>
- div>
- template>
-
- <script>
- export default {
- name: 'VuexPage1',
- data () {
- return {
- }
- },
- methods:{
- buy(){
- //通过commit方法 会 调用 mutations.js文件中定义好的方法
- this.$store.commit("setResName",{
- resName:'KFC'
- })
- },
- buyAsync(){
- this.$store.dispatch("setResNameAsync",{
- resName:'心理专家毛大师'
- })
- }
- },
- computed:{
- msg(){
- // 从vuex的state文件中获取值
- // return this.$store.state.resName;——>不推荐,不安全
- // 通过getters.js文件获取state.js中定义的变量值
- return this.$store.getters.getResName;
- }
- }
- }
- script>
-
- <style scoped>
-
- style>
actions.js
- export default {
- setResNameAsync:(context,payload)=>{
- // 异步修改值 在异步方法中调用了同步方法
- // context指的是Vuex的上下文,相当于 this.$store
- // 6秒后执行
- setTimeout(function (){
- context.commit("setResName",payload);
- },6000);
-
-
- }
- }
运行
先点按钮最终的店长,然后点按钮盘它
6s后
actions.js
- export default {
- setResNameAsync:(context,payload)=>{
- // 异步修改值 在异步方法中调用了同步方法
- // context指的是Vuex的上下文,相当于 this.$store
- // 6秒后执行
- setTimeout(function (){
- context.commit("setResName",payload);
- },6000);
-
- let _this=payload._this;
- let url=_this.axios.urls.SYSTEM_MENU_TREE;
- _this.axios.post(url,{}).then(r=>{
- console.log(r);
- }).catch(e=>{
-
- });
- }
- }
VuexPage1.vue
- <div>
- <p>页面1:欢迎来到{{msg}}p>
- <button @click="buy">盘它button>
- <button @click="buyAsync">最终的店长button>
- div>
-
- <script>
- export default {
- name: 'VuexPage1',
- data () {
- return {
- }
- },
- methods:{
- buy(){
- //通过commit方法 会 调用 mutations.js文件中定义好的方法
- this.$store.commit("setResName",{
- resName:'KFC'
- })
- },
- buyAsync(){
- this.$store.dispatch("setResNameAsync",{
- resName:'心理专家毛大师',
- _this:this
- })
- }
- },
- computed:{
- msg(){
- // 从vuex的state文件中获取值
- // return this.$store.state.resName;——>不推荐,不安全
- // 通过getters.js文件获取state.js中定义的变量值
- return this.$store.getters.getResName;
- }
- }
- }
- script>
-
- <style scoped>
-
- style>