最新公告
  • 欢迎您光临起源地模板网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!立即加入钻石VIP
  • vue入门:vuex概括与使用

    正文概述 掘金(小黄鸡1992)   2021-08-17   504

    本教程为入门教程,如有错误,请各位前端大佬指出。

    1.什么是vuex

     Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态,并以相应的规则保证状态以一种可预测的方式发生变化.详细介绍可以参照官网文档vuex.vuejs.org/zh/

    下面简单介绍vuex

    2.安装和引入

    先安装vuex。

    npm install vuex --save
    

    在main.js中引入后即可使用。

    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import router from './router'
    //vuex使用
    import Vuex from 'vuex'
    
    Vue.use(Vuex)
    const store = new Vuex.Store({
        state: {
            //全局变量
            count: 31231
        }
    })
    
    Vue.config.productionTip = false
        /* eslint-disable no-new */
    new Vue({
        el: '#app',
        router,
        //vuex必须加入
        store,
        components: { App },
        template: '<App/>'
    })
    

    3.vuex的使用

    <template>
    <div>
          老大有{{showData}}
          <HelloWorld2/>
    </div>
    </template>
    
    <script>
    import HelloWorld2 from './HelloWorld2'
    import son from './son'
    
    export default {
    name: 'HelloWorld',
    data () {
      return {
           message2:"",
           cou
        }
    },
    components:{
      HelloWorld2,
      son
    },computed: {
      showData(){
        return this.$store.state.count;
      }
    }
    }
    
    </script>
    
    <template>
    <div>
    老二有{{$store.state.count}}
    </div>
    </template>
    
    <script>
    export default {
    name: 'HelloWorld2',
    data() {
          return {
          }
        }
    }
    </script>
    

    4.流程介绍

    vue入门:vuex概括与使用

    如图当没有使用vuex时流程为: view->actions->state->view

    vue入门:vuex概括与使用vue入门:vuex概括与使用

    使用了vuex后流程为vuecomponent->(dispatch)actions->(commit)mutations->(mutate)state->(render)->vuecomponent

    5.mutation

    状态更改,更改 Vuex 的 store 中的状态的唯一方法是提交mutation。Vuex 中的 mutation 非常类似于事件:每个 mutation 都有一个字符串的事件类型 (type)和一个回调函数 (handler)。这个回调函数就是我们实际进行状态更改的地方,并且它会接受 state 作为第一个参数。

    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import router from './router'
    //vuex使用
    import Vuex from 'vuex'
    
    Vue.use(Vuex)
    const store = new Vuex.Store({
        state: {
            //全局变量
            count: 31231
        },
        //更改状态方法
        mutations: {
            //state为上面的state
            addData(state) {
                // 变更状态
                state.count++
            }
        }
    })
    
    Vue.config.productionTip = false
        /* eslint-disable no-new */
    new Vue({
        el: '#app',
        router,
        //vuex必须加入
        store,
        components: { App },
        template: '<App/>'
    })
    

    然后执行更改

    <template>
    <div>
          老大有{{showData}}
          <HelloWorld2/>
          <button type = "button" v-on:click = "changeData">  修改按钮    </button>
    </div>
    </template>
    
    <script>
    import HelloWorld2 from './HelloWorld2'
    import son from './son'
    
    export default {
    name: 'HelloWorld',
    data () {
      return {
           message2:"",
        }
    },
    components:{
      HelloWorld2,
      son
    },computed: {
      showData(){
        return this.$store.state.count;
      }
    },
    methods: {
      //执行更改
      changeData(event){
          this.$store.commit("addData");
      }
    }
    }
    
    </script>
    

    6.getters过滤

    可以限制mutation 比如小于0就不能减少了

    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import router from './router'
    //vuex使用
    import Vuex from 'vuex'
    
    Vue.use(Vuex)
    const store = new Vuex.Store({
        state: {
            //全局变量
            count: 0
        },
        //更改状态方法
        mutations: {
            //state为上面的state
            addData(state) {
                // 变更状态
                state.count++
            }
        },
        //过滤
        getters: {
            getState(state) {
                if (state.count >= 5) {
                    return 5
                } else {
                    return state.count
                }
            }
        }
    })
    
    Vue.config.productionTip = false
        /* eslint-disable no-new */
    new Vue({
        el: '#app',
        router,
        //vuex必须加入
        store,
        components: { App },
        template: '<App/>'
    })
    

    调用时

    <template>
    <div>
    老二有{{$store.getters.getState}}
    </div>
    </template>
    
    <script>
    export default {
    name: 'HelloWorld2',
    data() {
          return {
          }
        }
    }
    </script>
    

    7.Action--异步处理

    Action 类似于 mutation,不同在于:
    Action 提交的是 mutation,而不是直接变更状态。 Action 可以包含任意异步操作。 mutation只能同步处理 main.js。示例如下:

    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import router from './router'
    //vuex使用
    import Vuex from 'vuex'
    
    Vue.use(Vuex)
    const store = new Vuex.Store({
        state: {
            //全局变量
            count: 0
        },
        //更改状态方法
        mutations: {
            //state为上面的state
            addData(state) {
                // 变更状态
                state.count++
            }
        },
        //过滤
        getters: {
            getState(state) {
                if (state.count >= 5) {
                    return 5
                } else {
                    return state.count
                }
            }
        },
        actions: {
            //action触发的mutations方法 优势是异步处理
            addData(context) {
                //模拟异步
                setTimeout(() => {
                    context.commit('addData')
                }, 1000)
            }
        }
    })
    
    Vue.config.productionTip = false
        /* eslint-disable no-new */
    new Vue({
        el: '#app',
        router,
        //vuex必须加入
        store,
        components: { App },
        template: '<App/>'
    })
    

    在发送时 应该调用action。

    <template>
    <div>
          老大有{{showData}}
          <HelloWorld2/>
          <button type = "button" v-on:click = "changeData">  修改按钮    </button>
    </div>
    </template>
    
    <script>
    import HelloWorld2 from './HelloWorld2'
    import son from './son'
    
    export default {
    name: 'HelloWorld',
    data () {
      return {
           message2:"",
        }
    },
    components:{
      HelloWorld2,
      son
    },computed: {
      showData(){
        return this.$store.getters.getState;
      }
    },
    methods: {
      //执行更改
      changeData(event){
          //操作mutations方法
          //this.$store.commit("addData");
          //应该操作action而不是action触发的mutations方法
          this.$store.dispatch("addData");
    
      }
    }
    }
    
    </script>
    

    8.Module

    由于使用单一状态树,应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时,store 对象就有可能变得相当臃肿。

    为了解决以上问题,Vuex 允许我们将 store 分割成模块(module)。每个模块拥有自己的 state、mutation、action、getter、甚至是嵌套子模块——从上至下进行同样方式的分割:

    如路由可以分割文件 不在main.js中放入vuex 新建store/index.js

    //vuex使用
    import Vue from 'vue'
    import Vuex from 'vuex'
    
    Vue.use(Vuex)
    
    export default new Vuex.Store({
        state: {
            //全局变量
            count: 0
        },
        //更改状态方法
        mutations: {
            //state为上面的state
            addData(state) {
                // 变更状态
                state.count++
            }
        },
        //过滤
        getters: {
            getState(state) {
                if (state.count >= 5) {
                    return 5
                } else {
                    return state.count
                }
            }
        },
        actions: {
            //action触发的mutations方法 优势是异步处理
            addData(context) {
                //模拟异步
                setTimeout(() => {
                    context.commit('addData')
                }, 1000)
            }
        }
    })
    

    修改main.js

    // The Vue build version to load with the `import` command
    // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    import Vue from 'vue'
    import App from './App'
    import router from './router'
    import store from './store'
    
    
    Vue.config.productionTip = false
        /* eslint-disable no-new */
    new Vue({
        el: '#app',
        router,
        //vuex必须加入
        store,
        components: { App },
        template: '<App/>'
    })
    

    我们还能把main.js中的state拿出 新建store/state.js

    export default {
        count: 0
    }
    

    然后index.js可以改成

    //vuex使用
    import Vue from 'vue'
    import Vuex from 'vuex'
    import state from './state'
    
    Vue.use(Vuex)
    
    export default new Vuex.Store({
        state: state,
        //更改状态方法
        mutations: {
            //state为上面的state
            addData(state) {
                // 变更状态
                state.count++
            }
        },
        //过滤
        getters: {
            getState(state) {
                if (state.count >= 5) {
                    return 5
                } else {
                    return state.count
                }
            }
        },
        actions: {
            //action触发的mutations方法 优势是异步处理
            addData(context) {
                //模拟异步
                setTimeout(() => {
                    context.commit('addData')
                }, 1000)
            }
        }
    })
    


    起源地下载网 » vue入门:vuex概括与使用

    常见问题FAQ

    免费下载或者VIP会员专享资源能否直接商用?
    本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
    提示下载完但解压或打开不了?
    最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。若排除这种情况,可在对应资源底部留言,或 联络我们.。
    找不到素材资源介绍文章里的示例图片?
    对于PPT,KEY,Mockups,APP,网页模版等类型的素材,文章内用于介绍的图片通常并不包含在对应可供下载素材包内。这些相关商业图片需另外购买,且本站不负责(也没有办法)找到出处。 同样地一些字体文件也是这种情况,但部分素材会在素材包内有一份字体下载链接清单。
    模板不会安装或需要功能定制以及二次开发?
    请QQ联系我们

    发表评论

    还没有评论,快来抢沙发吧!

    如需帝国cms功能定制以及二次开发请联系我们

    联系作者

    请选择支付方式

    ×
    迅虎支付宝
    迅虎微信
    支付宝当面付
    余额支付
    ×
    微信扫码支付 0 元