Vuex

什么是Vuex及Vuex的优缺点

Vuex是专为Vue.js应用程序开发的状态管理模式。比如一个简单的Vue计数应用:

new Vue({
  // state
  data () {
    return {
      count: 0
    }
  },
  // view
  template: `
    <div>{{ count }}</div>
  `,
  // actions
  methods: {
    increment () {
      this.count++
    }
  }
})

这个状态自管理应用包含以下三部分:
· state,驱动应用的数据源
· view,以声明方式将state映射到视图
· actions,响应在view上的用户输入导致的状态变化
对于如下图所示的单向数据流:

image.png

当遇到多个组件共享状态的时候,其简洁性很容易被破坏:
· 多个视图依赖于同一状态
· 来自不同视图的行为需要变更同一状态
所以,可以把组件的共享状态抽取出来,以一个全局单例模式管理,在这种模式下,组件树构成了一个巨大的“视图”,不管在树的哪个位置,任何组件都能获取状态或触发行为。Vuex便由此而生。

Vuex的优缺点

Vuex可以帮助管理共享状态,对开发大型单页应用带来了方便。但如果要开发的应用足够简单,Vuex可能就显得相对繁琐冗余,不适合使用。

Vuex五大属性

Vuex的五大属性分别是:state、getter、mutation、action、module
根据我个人的理解,可以把Vuex与Vue组件进行对照记忆:
**state => 基本数据 => data
getters => 从基本数据派生的数据 => computed
mutations => 提交更改数据的方法,同步! => 同步methods
actions => 像一个装饰器,包裹mutations,使之可以异步。 => 异步调用methods
modules => 模块化Vuex

1. state

2. getter

3. mutation

4. action

5. module

module是考虑到使用单一状态树,当所有状态集中到一个比较大的对象时,如果应用变得非常复杂, 那么store对象就可能变得相当臃肿,不便于开发与维护。
Vuex允许将store分割成多个模块(module),每个模块都拥有自己的state、mutation、action、getter,甚至能嵌套子模块(module)。
注意:moduleX的声明必须在store之前。

const moduleA = {
    state: {
        count: 3
    },
    mutations: {
        increment(state) {
            state.count++
        }
    },
    getters: {
      sumWithRootCount (state, getters, rootState) {
        return state.count + rootState.count
     }
    },
    actions: {
        incrementIfOddOnRootSum({state, commit, rootState}){
            if((state.count + rootState.count) % 2 === 1){
                commit('increment')
            }
        }
    }
}

const moduleB = {
    state: {
        count: 8
    },
    mutations: {
        login() {}
    },
    getters: {
        login() {}
    },
    actions: {
        login() {}
    }
}

const store = new Vuex.Store({
    modules: {
        a: moduleA,
        b: moduleB
    },
    state: {
        count: 2
    },
    mutations: {
        increment(state) {
            state.count++
        }
    },
    actions: {

    },
    getters: {

    }
})

new Vue({
    el: '#app',
    store,
    data: {

    },
    computed: {

    }
});

对于模块内部的mutation和getter,接收的第一个参数是模块的局部state,如moduleA的mutation与getter。
对于模块内部的action,局部state通过'context.state暴露出来,根节点状态则通过context.rootState暴露出来。如moduleA中的action。 对于模块内部的getter,根节点state则作为第三个参数暴露出来。如moduleA中的getter。 **命名空间** 默认情况下,模块内部的action、mutation、getter是注册在全局命名空间的,即假如你定义的moduleA与store都有increment()的mutation属性,那当你执行:store.commit('increment')`的时候,会将store与其子模块里mutation的increment方法一起调用。如:

console.log(store.state.a.count); // 3
console.log(store.state.count); // 2
store.commit('increment');
console.log(store.state.a.count); // 4
console.log(store.state.count); // 3

如果你希望定义的模块有更高的封装度和复用性,可以通过加入namespaced: true的方式使其成为带命名空间的模块。当模块被注册后,其所有的getter、action与mutation都会自动根据模块注册的路径调整命名。
例如给moduleA添加namespaced: true,则执行store.commit('increment')时会自动跳过moduleA。此时:

const moduleA = {
    namespaced: true
......
......
}

console.log(store.state.a.count); // 3
console.log(store.state.count); // 2
store.commit('increment');
console.log(store.state.a.count); // 3
console.log(store.state.count); // 3

此时若想执行moduleA的increment,则要这样写:store.commit('a/increment'),这样便只执行moduleA中的increment。
若moduleA嵌套moduleC,则在不声明moduleC的namespaced情况下,其继承父模块moduleA的命名空间。即:

const store = new Vuex.Store({
  modules: {
    account: {
      namespaced: true,

      // 模块内容(module assets)
      state: { ... }, // 模块内的状态已经是嵌套的了,使用 `namespaced` 属性不会对其产生影响
      getters: {
        isAdmin () { ... } // -> getters['account/isAdmin']
      },
      actions: {
        login () { ... } // -> dispatch('account/login')
      },
      mutations: {
        login () { ... } // -> commit('account/login')
      },

      // 嵌套模块
      modules: {
        // 继承父模块的命名空间
        myPage: {
          state: { ... },
          getters: {
            profile () { ... } // -> getters['account/profile']
          }
        },

        // 进一步嵌套命名空间
        posts: {
          namespaced: true,

          state: { ... },
          getters: {
            popular () { ... } // -> getters['account/posts/popular']
          }
        }
      }
    }
  }
})

在带命名空间的模块内访问全局内容
对于getter,会将rootState与rootGetters作为第三与第四参数传入:

    getters: {
        someGetter (state, getters, rootState, rootGetters) {
            rootState.count;
            state.count;
            
            getters.someOtherGetter;
            rootGetters.someOtherGetter;
        }
    },

对于mutation与action,将(root: true}作为第三参数传给dispatch或commit即可:

    actions: {
        someAction({ dispatch, commit, getters, rootGetters }) {
            getters.someGetter;
            rootGetters.someGetter;
            
            dispatch('someOtherAction'); // 不传第三参数,则从自身查找
            dispatch('someOtherAction', null, { root: true }); // 传入第三参数,则从父模块查找
            
            commit('someMutation'); // 与上同理
            commit('someMutation', null, { root: true });
        }
    }

那么对于mapState、mapGetters、mapMutations、mapActions这些函数来绑定带命名空间的模块时,直接写可能有点繁琐:

computed: {
  ...mapState({
    a: state => state.some.nested.module.a,
    b: state => state.some.nested.module.b
  })
},
methods: {
  ...mapActions([
    'some/nested/module/foo', // -> this['some/nested/module/foo']()
    'some/nested/module/bar' // -> this['some/nested/module/bar']()
  ])
}

可以将模块的空间名称字符串作为第一个参数传递给上述函数,这样所有绑定都会自动将该模块作为上下文。上面的例子可以简化为:

computed: {
  ...mapState('some/nested/module', {
    a: state => state.a,
    b: state => state.b
  })
},
methods: {
  ...mapActions('some/nested/module', [
    'foo', // -> this.foo()
    'bar' // -> this.bar()
  ])
}

模块动态注册
你可以在store创建之后,动态地用store.registerModule方法给store创建模块:

// 注册模块 `myModule`
store.registerModule('myModule', {
  // ...
})
// 注册嵌套模块 `nested/myModule`
store.registerModule(['nested', 'myModule'], {
  // ...
})

之后就能通过store,state.myModulestore.state.nested.myModule来访问模块的状态。你也可以使用 store.unregisterModule(moduleName)来动态卸载模块。但需要注意,你不可以卸载store声明时的模块,即静态模块。
保留state
在注册新module时,如果你想保留过去的state,例如从服务器渲染的应用保留state,可以通过preserveState选项将其归档store.registerModule('a', module, { preserveState: true })
当你设置 preserveState: true 时,该模块会被注册,action、mutation 和 getter 会被添加到 store 中,但是 state 不会。这里假设 store 的 state 已经包含了这个 module 的 state 并且你不希望将其覆写。
模块重用
在实际开发中可能会有一个store中多次注册同一个模块,或者多个store注册同一个模块的需求,此时module被引用调用一次,其state就可能被重写,导致store或模块间数据互相污染。(类似于Vue组件内的data会遇到同样的问题)
解决办法也类似,就是使用一个函数来声明模块状态:

const MyReusableModule = {
  state () {
    return {
      foo: 'bar'
    }
  },
  // mutation, action 和 getter 等等...
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容