美文网首页
vuex简单使用

vuex简单使用

作者: 移动端_小刚哥 | 来源:发表于2019-08-06 15:52 被阅读0次

Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式,本文会介绍怎么使用vuex,比较简单,如果想对vuex有更深入的理解可以去看官方地址
https://vuex.vuejs.org/zh/

一、创建store

  1. 在工程根目录新建文件夹store
  2. 在store文件夹中新建index.js
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)

const store = new Vuex.Store({
    state:{
        global_count: 1,
        global_name:'张三'
    },
    mutations:{
        //global_count自增函数
        increment (state){
            state.global_count++
        },
        //global_count自减函数
        reduction (state){
            state.global_count--
        },
        //给global_count赋值
        setCount (state,num){
            state.global_count=num
        },
        //给global_name赋值
        setName (state,n){
            state.global_name=n
        }
    }
})

export default store
  1. main.js挂载store
import store from './store'  
Vue.prototype.$store = store 

二、在index.vue中使用(同步)

index.vue中代码为

<template>
    <view class="content">      
                <!-- 自定义导航栏,使用colurui -->
        <cu-custom bgColor="bg-white solid-bottom">
            <block slot="content">相册</block>
        </cu-custom>
        <view>
            <view class="count-style">count={{global_count}},name={{global_name}}</view>
            <button @click="increase">++</button>
            <button @click="reduction">--</button>
            <button @click="setCount">赋值100</button>
            <button @click="setName">那么修改为abc</button>
            <button @click="push">跳转到第二页</button>
        </view>
    </view>
</template>

<script>
    export default {
        data() {
            return {
            }
        },
        computed:{
            global_count(){
                return this.$store.state.global_count
            },
            global_name(){
                return this.$store.state.global_name
            }
        },
        onLoad() {
        },
        methods: {
            increase: function(){
                this.$store.commit('increment')
            },
            reduction: function(){
                this.$store.commit('reduction');
            },
            setCount: function(){
                this.$store.commit('setCount',100)
            },
            setName: function(){
                this.$store.commit('setName','abc')
            },
            push: function(){
                uni.navigateTo({
                    url: 'countDetail/countDetail',
                    success: res => {},
                    fail: () => {},
                    complete: () => {}
                });
            }
        }
    }
</script>

<style>
    .count-style{
        width: 750upx;
        height: 100upx; 
        text-align: center;
        line-height: 100upx;
        font-size: 40upx; 
        color: #DD524D;
    }
</style>

countDetail.vue中代码为

<template>
    <view>
        <cu-custom bgColor="bg-white solid-bottom" :isBack="true">
            <block slot="content">第二页</block>
        </cu-custom>
        <view class="count-style">count={{global_count}},name={{global_name}}</view>
        <button @click="jiajia">++</button> 
        <button @click="jianjian">--</button>
        <button @click="changeName">name修改为tony</button>
    </view>
</template>

<script>
    export default {
        data() {
            return {
            }
        },
        computed:{
            global_count(){
                return this.$store.state.global_count
            },
            global_name(){
                return this.$store.state.global_name
            }
        },
        methods: {
            jiajia: function(){
                this.$store.commit('increment')
            },
            jianjian: function(){
                this.$store.commit('reduction')
            },
            changeName: function(){
                this.$store.commit('setName')
            }
        }
    }
</script>

<style>
.count-style{
        width: 750upx;
        height: 100upx; 
        text-align: center;
        line-height: 100upx;
        font-size: 40upx; 
        color: #DD524D;
    }
</style>
效果图.gif

三、使用actions(可以实现异步修改)

Action 类似于 mutation,不同在于:

  • Action 提交的是 mutation,而不是直接变更状态。
  • Action 可以包含任意异步操作。

一个异步操作的小例子:

incrementAsync ({ commit }) {
    setTimeout(() => {
      commit('increment')
    }, 1000)
  }

import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)

const store = new Vuex.Store({
    state:{
        global_count: 1,
        global_name:'张三'
    },
    mutations:{
        //global_count自增函数
        increment (state){
            state.global_count++
        },
        //global_count自减函数
        reduction (state){
            state.global_count--
        },
        //给global_count赋值
        setCount (state,num){
            state.global_count=num
        },
        //给global_name赋值
        setName (state,n){
            state.global_name=n
        }
    },
    
    
    actions:{
        a: function(context){
            //处理异步逻辑
            context.commit('increment');
        },
        b: function(context){
            //处理异步逻辑
            context.commit('reduction');
        },
        c: function(context,num){
            //处理复杂逻辑
            context.commit('setCount',num);
        },
        d: function(context,n){
            //处理异步逻辑
            context.commit('setName',n)
        }
    },
})

export default store

index.vue代码为

<template>
    <view class="content">      
           <!-- 自定义导航栏,使用colurui -->
        <cu-custom bgColor="bg-white solid-bottom">
            <block slot="content">相册</block>
        </cu-custom>
        <view>
            <view class="count-style">count={{global_count}},name={{global_name}}</view>
            <button @click="increase">++</button>
            <button @click="reduction">--</button>
            <button @click="setCount">赋值100</button>
            <button @click="setName">那么修改为abc</button>
            <button @click="push">跳转到第二页</button>
        </view>
    </view>
</template>

<script>
    export default {
        data() {
            return {
            }
        },
        computed:{
            global_count(){
                return this.$store.state.global_count
            },
            global_name(){
                return this.$store.state.global_name
            }
        },
        onLoad() {
        },
        methods: {
            increase: function(){
                this.$store.dispatch('a');
            },
            reduction: function(){
                this.$store.dispatch('b')
            },
            setCount: function(){
                this.$store.dispatch('c',100)
            },
            setName: function(){
                this.$store.dispatch('d','abc')
            },
            push: function(){
                uni.navigateTo({
                    url: 'countDetail/countDetail',
                    success: res => {},
                    fail: () => {},
                    complete: () => {}
                });
            }
        }
    }
</script>

<style>
    .count-style{
        width: 750upx;
        height: 100upx; 
        text-align: center;
        line-height: 100upx;
        font-size: 40upx; 
        color: #DD524D;
    }
</style>

countDetail.vue代码为

<template>
    <view>
        <cu-custom bgColor="bg-white solid-bottom" :isBack="true">
            <block slot="content">第二页</block>
        </cu-custom>
        <view class="count-style">count={{global_count}},name={{global_name}}</view>
        <button @click="jiajia">++</button> 
        <button @click="jianjian">--</button>
        <button @click="changeName">name修改为tony</button>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                
            }
        },
        computed:{
            global_count(){
                return this.$store.state.global_count
            },
            global_name(){
                return this.$store.state.global_name
            }
        },
        methods: {
            jiajia: function(){
                this.$store.dispatch('a')
            },
            jianjian: function(){
                this.$store.dispatch('b')
            },
            changeName: function(){
                this.$store.dispatch('d','Tony')
            }
        }
    }
</script>

<style>
.count-style{
        width: 750upx;
        height: 100upx; 
        text-align: center;
        line-height: 100upx;
        font-size: 40upx; 
        color: #DD524D;
    }
</style>

运行效果同上

四、对象展开运算符mapState

如果当前页面需要用到多个状态的时候我们需要在计算属性computed写多个声明,这回有些冗余,那么我们可以使用对象展开运算符mapState

<script>
    import {
        mapState
    } from 'vuex';
    export default {
        data() {
            return {
            }
        },
        computed:{
            ...mapState(['global_count','global_name'])
            // global_count(){
            //  return this.$store.state.global_count
            // },
            // global_name(){
            //  return this.$store.state.global_name
            // }
        },
        onLoad() {
        },
        methods: {
            increase: function(){
                this.$store.dispatch('a');
            },
            reduction: function(){
                this.$store.dispatch('b')
            },
            setCount: function(){
                this.$store.dispatch('c',100)
            },
            setName: function(){
                this.$store.dispatch('d','abc')
            },
            push: function(){
                uni.navigateTo({
                    url: 'countDetail/countDetail',
                    success: res => {},
                    fail: () => {},
                    complete: () => {}
                });
            }
        },
    }
</script>

五、Getter

我们需要从 store 中的 state 中派生出一些状态,例如对列表进行过滤并计数:

store中的state

    state:{
        global_count: 1,
        global_name:'张三',
        global_arr: [{'name':'张零','score':88},
                    {'name':'张一','score':66},
                    {'name':'张二','score':44}]
    },

我们要筛选出60分以上的学生,那么我们可以在当前页面的计算属性中:

computed: {
    goodStudentNum(){
      return this.$store.state.global_arr.filter(todo=>todo.score>=60).length
    }
}

页面渲染

        <view>
            <view class="count-style">count={{global_count}},name={{global_name}},goodStuNum={{goodStudentNum}}</view>
            <button @click="increase">++</button>
            <button @click="reduction">--</button>
            <button @click="setCount">赋值100</button>
            <button @click="setName">那么修改为abc</button>
            <button @click="push">跳转到第二页</button>
        </view>
WechatIMG433.png

如果多个页面都需要使用筛选那么就需要写很多次,Vuex 允许我们在 store 中定义“getter”(可以认为是 store 的计算属性)。

const store = new Vuex.Store({
  state:{
        global_count: 1,
        global_name:'张三',
        global_arr: [{'name':'张零','score':88},
                    {'name':'张一','score':66},
                    {'name':'张二','score':44}]
    },
  getters: {
    goodStudentNum: state => {
      return state. global_arr.filter(todo => todo. score>=60).length
    }
  }
})

使用

computed:{
            ...mapState(['global_count','global_name']),
            goodStudentNum(){
                return this.$store.getters.goodStudentNum
            },
        },

我们也可以从页面传入参数,例如传入要筛选的最小分数和最大分数

    getters:{
        goodStudentNum: (state) => (min,max) => {
            return state.global_arr.filter(todo => todo.score>=min&&todo.score<max).length
        }
    },
computed:{
            ...mapState(['global_count','global_name']),
            goodStudentNum(){
                return this.$store.getters.goodStudentNum(60,77)
            },
        },
WechatIMG434.png

Getter也有辅助函数mapGetter

        <view>
            <view class="count-style">count={{global_count}},name={{global_name}},goodStuNum={{goodStudentNum(60,77)}}</view>
            <button @click="increase">++</button>
            <button @click="reduction">--</button>
            <button @click="setCount">赋值100</button>
            <button @click="setName">那么修改为abc</button>
            <button @click="push">跳转到第二页</button>
        </view>
import {
        mapState,
        mapGetters
    } from 'vuex';
        computed:{
            ...mapState(['global_count','global_name']),
            ...mapGetters(['goodStudentNum']),
            // goodStudentNum(){
            //  return this.$store.getters.goodStudentNum(60,77)
            // },
        },

如果不使用store的方法,那么可以使用自定义的方法名跟其对应起来

mapGetters({
  // 把 `this.doneCount` 映射为 `this.$store.getters. goodStudentNum `
  doneCount: 'goodStudentNum'
})

gitHub: https://github.com/jizhigang/vuexDemo

参考文章
https://vuex.vuejs.org/zh/

相关文章

  • 通过一个简单实例了解vuex

    简单说明 什么是vuex,vuex怎么使用,什么场景下适合使用vuex, vuex 文档中都有介绍。看完文档之后,...

  • vuex使用记录

    副标题:vuex使用详解、vue使用全局变量、vue使用 store 这篇博客主要记录了 vuex的使用方法,简单...

  • vuex简单使用

    Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式,本文会介绍怎么使用vuex,比较简单,如果想对vu...

  • vuex简单使用

    https://vuex.vuejs.org/zh/installation.html[https://vuex....

  • vuex简单使用

    vuex是一个数据集中管理的库,在数据量庞大并且涉及到多个组件之间交互使用数据的时候,他就可以派上用场,完美的解决...

  • Vuex简单使用

    一、初始化Vuex Vuex[https://vuex.vuejs.org/zh/]是一个专为 Vue.js 应用...

  • 2020-03-25 vuex 全集

    Vuex入门(1)—— Vuex的设计初衷和简单使用 https://blog.csdn.net/dkr38020...

  • vuex简单简单使用记录

    1、Vuex有啥用(非官方解释)举例,组件a b 使用了同一个数据源count,当操作a的时候count++,同时...

  • vuex入门详解

    vuex最简单、最详细的入门文档 vuex最简单、最详细的入门文档 如果你在使用 vue.js , 那么我想你可能...

  • vuex记录

    前言 官方文档讲vuex讲的很清楚了,本文用于总结vuex的简单使用 简介 Vuex 是一个专为 Vue.js 应...

网友评论

      本文标题:vuex简单使用

      本文链接:https://www.haomeiwen.com/subject/rgzidctx.html