Getter

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

  1. computed: {
  2. doneTodosCount () {
  3. return store.state.todos.filter(todo => todo.done).length
  4. }
  5. }

如果有多个组件需要用到此属性,我们要么复制这个函数,或者抽取到一个共享函数然后在多处导入它——无论哪种方式都不是很理想。

mpx内置store 允许我们在 store 中定义“getter”(可以认为是 store 的计算属性)。就像计算属性一样,getter 的返回值会根据它的依赖被缓存起来,且只有当它的依赖值发生了改变才会被重新计算。

Getter 接受 state 作为其第一个参数:

  1. import {createStore} from '@mpxjs/core'
  2. const store = createStore({
  3. state: {
  4. todos: [
  5. { id: 1, text: '...', done: true },
  6. { id: 2, text: '...', done: false }
  7. ]
  8. },
  9. getters: {
  10. doneTodos: state => {
  11. return state.todos.filter(todo => todo.done)
  12. }
  13. }
  14. })
  15. export default store

Getter 会暴露为 store.getters 对象:

  1. store.getters.doneTodos // -> [{ id: 1, text: '...', done: true }]

Getter 也可以接受其他 getters 作为第二个参数, rootState作为第三个参数:

  1. getters: {
  2. // ...
  3. doneTodosCount: (state, getters, rootState) => {
  4. return getters.doneTodos.length
  5. }
  6. }
  1. store.getters.doneTodosCount // -> 1

我们可以很容易地在任何组件中使用它:

  1. computed: {
  2. doneTodosCount () {
  3. return store.getters.doneTodosCount
  4. }
  5. }

你也可以通过让 getter 返回一个函数,来实现给 getter 传参。在你对 store 里的数组进行查询时非常有用。

  1. getters: {
  2. // ...
  3. getTodoById: (state) => (id) => {
  4. return state.todos.find(todo => todo.id === id)
  5. }
  6. }
  1. store.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }

store.mapGetters 辅助函数

store.mapGetters 辅助函数仅仅是将 store 中的 getter 映射到局部计算属性computed里面:

  1. import store from 'path to store'
  2. export default {
  3. // ...
  4. computed: {
  5. // 使用对象展开运算符将 getter 混入 computed 对象中
  6. ...store.mapGetters([
  7. 'doneTodosCount',
  8. 'anotherGetter',
  9. // ...
  10. ])
  11. }
  12. }

如果你想将一个 getter 属性另取一个名字,使用对象形式:

  1. store.mapGetters({
  2. // 映射 `this.doneCount` 为 `store.getters.doneTodosCount`
  3. doneCount: 'doneTodosCount'
  4. })