Vue复习笔记 (六)Vuex状态管理

Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。
每一个 Vuex 应用的核心就是 store(仓库)。“store”基本上就是一个容器,它包含着你的应用中大部分的状态 (state)。

一、Vuex 和全局对象的区别:

  1. Vuex 的状态存储是响应式的。当 Vue 组件从 store 中读取状态的时候,若 store 中的状态发生变化,那么相应的组件也会相应地得到高效更新。
  2. 你不能直接改变 store 中的状态。改变 store 中的状态的唯一途径就是显式地提交 (commit) mutation。这样使得我们可以方便地跟踪每一个状态的变化,从而让我们能够实现一些工具帮助我们更好地了解我们的应用。

二、创建store

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

const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    increment (state) {
      state.count++
    }
  }
})

可以通过 store.state 来获取状态对象,
以及通过 store.commit 方法触发状态变更

store.commit('increment')
console.log(store.state.count) // -> 1

Vuex 提供了一个从根组件向所有子组件,以 store 选项的方式“注入”该 store 的机制( 为了在 Vue 组件中访问 this.$store property )

new Vue({
  el: '#app',
  // 把 store 对象提供给 “store” 选项,这可以把 store 的实例注入所有的子组件
  store: store,
})

由于 store 中的状态是响应式的,
在组件中调用 store 中的状态简单到仅需要在计算属性中返回即可。
触发变化也仅仅是在组件的 methods 中提交 mutation。

三、state

Vuex 使用单一状态树:用一个对象就包含了全部的应用层级状态。作为一个“唯一数据源 (SSOT)”而存在。
【 每个应用将仅仅包含一个 store 实例。】

  1. 在 组件中获得 Vuex 状态
    读取状态最简单的方法就是在计算属性中返回某个状态
const Counter = {
  template: `
{{ count }}
`
, computed: { count () { return this.$store.state.count } } }
  1. mapState 辅助函数
    使用 mapState 辅助函数帮助生成计算属性
// 在单独构建的版本中辅助函数为 Vuex.mapState
import { mapState } from 'vuex'

export default {
  // ...
  computed: mapState({
    // 箭头函数可使代码更简练
    count: state => state.count,
    // 传字符串参数 'count' 等同于 `state => state.count`
    countAlias: 'count',
    // 为了能够使用 `this` 获取局部状态,必须使用常规函数
    countPlusLocalState (state) {
      return state.count + this.localCount
    }
  })
}

当映射的计算属性的名称与 state 的子节点名称相同时,也可以传字符串数组:

computed: mapState([
  // 映射 this.count 为 store.state.count
  'count'
])
  1. 对象展开运算符

与局部计算属性混合使用:

computed: {
  localComputed () { /* ... */ },
  // 使用对象展开运算符将此对象混入到外部对象中
  ...mapState({
    // ...
  })
}

四、Getter

从 store 中的 state 中派生出一些状态(可以认为是 store 的计算属性 )
就像计算属性一样,getter 的返回值会根据它的依赖被缓存起来,且只有当它的依赖值发生了改变才会被重新计算。

const store = new Vuex.Store({
  state: {
    todos: [
      { id: 1, text: '...', done: true },
      { id: 2, text: '...', done: false }
    ]
  },
  getters: {
    doneTodos: state => {
      return state.todos.filter(todo => todo.done)
    }
  }
})
  1. 通过属性访问
    Getter 会暴露为 store.getters 对象
    访问属性:store.getters.doneTodos

Getter 也可以接受其他 getter 作为第二个参数:

getters: {
  // ...
  doneTodosCount: (state, getters) => {
    return getters.doneTodos.length
  }
}
store.getters.doneTodosCount // -> 1
  1. 通过方法访问

也可以通过让 getter 返回一个函数,来实现给 getter 传参

getters: {
  // ...
  getTodoById: (state) => (id) => {
    return state.todos.find(todo => todo.id === id)
  }
}
store.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }
  1. mapGetters 辅助函数

辅助函数仅仅是将 store 中的 getter 映射到局部计算属性

import { mapGetters } from 'vuex'

export default {
  // ...
  computed: {
  // 使用对象展开运算符将 getter 混入 computed 对象中
    ...mapGetters([
      'doneTodosCount',
      'anotherGetter',
      // ...
    ])
  }
}

另取一个名字,使用对象形式:

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

五、Mutation

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

const store = new Vuex.Store({
  state: {
    count: 1
  },
  mutations: {
    increment (state) {
      // 变更状态
      state.count++
    }
  }
})

store.commit('increment')

要唤醒一个 mutation handler,你需要以相应的 type 调用 store.commit 方法。

  1. 载荷(Payload)

可以向 store.commit 传入额外的参数,即 mutation 的载荷

mutations: {
  increment (state, n) {
    state.count += n
  }
}
store.commit('increment', 10);
//在大多数情况下,载荷应该是一个对象
mutations: {
  increment (state, payload) {
    state.count += payload.amount
  }
}
store.commit('increment', {
  amount: 10
})

//直接使用包含 type 属性的对象(整个对象都作为载荷传给 mutation)
//( handler 保持不变
store.commit({
  type: 'increment',
  amount: 10
})

六、Action

七、Module

你可能感兴趣的:(VUE复习笔记,vue.js,javascript,前端)