前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Vuex精简文档

Vuex精简文档

作者头像
神葳
发布2021-01-22 16:04:57
8110
发布2021-01-22 16:04:57
举报
文章被收录于专栏:神葳总局神葳总局

说明

  • 以下记录均针对于vue-cli
  • 本页所整理的关于Vuex的知识点并不完整,目的在于让开发者快速熟悉Vuex的系统知识,详情请移步Vuex官网

# State

获取状态

# 1.组件中获取

Vuex 通过 store 选项,提供了一种机制将状态从根组件“注入”到每一个子组件中(需调用 Vue.use(Vuex)):

代码语言:javascript
复制
const app = new Vue({
  el: '#app',
  // 把 store 对象提供给 “store” 选项,这可以把 store 的实例注入所有的子组件
  store,
  components: { Counter },
  template: `
    <div class="app">
      <counter></counter>
    </div>
  `
})

1 2 3 4 5 6 7 8 9 10 11

复制

使用:

代码语言:javascript
复制
const Counter = {
  template: `<div>{{ count }}</div>`,
  computed: {
    count () {
      return this.$store.state.count
    }
  }
}

1 2 3 4 5 6 7 8

复制

# 2.mapState 辅助函数

使用 mapState 辅助函数帮助我们生成计算属性

代码语言:javascript
复制
// 在单独构建的版本中辅助函数为 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
    }
  })
}

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18

复制

当映射的计算属性的名称与 state 的子节点名称相同时,我们也可以给 mapState 传一个字符串数组。

代码语言:javascript
复制
computed: mapState([
  // 映射 this.count 为 store.state.count
  'count'
])

1 2 3 4

复制

# 3.对象展开运算符

mapState 函数返回的是一个对象。我们如何将它与局部计算属性混合使用呢?通常,我们需要使用一个工具函数将多个对象合并为一个,以使我们可以将最终对象传给 computed 属性。

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

1 2 3 4 5 6 7

复制

# 4.组件仍然保有局部状态

使用 Vuex 并不意味着你需要将所有的状态放入 Vuex。虽然将所有的状态放到 Vuex 会使状态变化更显式和易调试,但也会使代码变得冗长和不直观。如果有些状态严格属于单个组件,最好还是作为组件的局部状态。你应该根据你的应用开发需要进行权衡和确定。

# Getter

可以获取状态,也可以获取状态的衍生结果

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

代码语言:javascript
复制
computed: {
doneTodosCount () {
  return this.$store.state.todos.filter(todo => todo.done).length
}
}

1 2 3 4 5

复制

如果有多个组件需要用到此属性,我们要么复制这个函数,这是一件很无聊的事。

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

# 1.通过属性访问
代码语言:javascript
复制
const store = new Vuex.Store({
  state: {
    todos: [
      { id: 1, text: '...', done: true },
      { id: 2, text: '...', done: false }
    ]
  },
  getters: {
    // Getter 接受 state 作为其第一个参数:
    doneTodos: state => {
      return state.todos.filter(todo => todo.done)
    }
  }
})

1 2 3 4 5 6 7 8 9 10 11 12 13 14

复制

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

代码语言:javascript
复制
computed: {
  doneTodosCount () {
    return this.$store.getters.doneTodosCount
  }
}

1 2 3 4 5

复制

# 2.通过方法访问
代码语言:javascript
复制
getters: {
  // ...
  getTodoById: (state) => (id) => {
    return state.todos.find(todo => todo.id === id)
  }
}

1 2 3 4 5 6

复制

代码语言:javascript
复制
store.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }

1

复制

  1. mapGetters 辅助函数
代码语言:javascript
复制
import { mapGetters } from 'vuex'

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

1 2 3 4 5 6 7 8 9 10 11 12 13

复制

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

代码语言:javascript
复制
mapGetters({
  // 把 `this.doneCount` 映射为 `this.$store.getters.doneTodosCount`
  doneCount: 'doneTodosCount'
})

1 2 3 4

复制

# Mutation

切记是同步的,通过commit提交

# 1.普通commit提交

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

代码语言:javascript
复制
const store = new Vuex.Store({
  state: {
    count: 1
  },
  mutations: {
    increment (state) {
      // 变更状态
      state.count++
    }
  }
})

store.commit('increment')

1 2 3 4 5 6 7 8 9 10 11 12 13

复制

# 2.提交载荷(Payload)
代码语言:javascript
复制
const store = new Vuex.Store({
  state: {
    count: 1
  },
  mutations: {
    increment (state, n) {
      state.count += n
    }
  }
})

store.commit('increment', 10)

1 2 3 4 5 6 7 8 9 10 11 12

复制

在大多数情况下,载荷应该是一个对象,这样可以包含多个字段并且记录的 mutation 会更易读:

代码语言:javascript
复制
const store = new Vuex.Store({
  state: {
    count: 1
  },
  mutations: {
    increment (state, payload) {
      state.count += payload.amount
    }
  }
})

store.commit('increment', {
  amount: 10
})

// 或者是

store.commit({
  type: 'increment',
  amount: 10
})

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

复制

# 3.使用常量替代 Mutation 事件类型
代码语言:javascript
复制
// mutation-types.js
export const SOME_MUTATION = 'SOME_MUTATION'

1 2

复制

代码语言:javascript
复制
// store.js
import Vuex from 'vuex'
import { SOME_MUTATION } from './mutation-types'

const store = new Vuex.Store({
  state: { ... },
  mutations: {
    // 我们可以使用 ES2015 风格的计算属性命名功能来使用一个常量作为函数名
    [SOME_MUTATION] (state) {
      // mutate state
    }
  }
})

1 2 3 4 5 6 7 8 9 10 11 12 13

复制

# 4.Mutation 必须是同步函数

一条重要的原则就是要记住 mutation 必须是同步函数。

# 5.在组件中提交 Mutation
代码语言:javascript
复制
import { mapMutations } from 'vuex'

export default {
  // ...
  methods: {
    ...mapMutations([
      'increment', // 将 `this.increment()` 映射为 `this.$store.commit('increment')`

      // `mapMutations` 也支持载荷:
      'incrementBy' // 将 `this.incrementBy(amount)` 映射为 `this.$store.commit('incrementBy', amount)`
    ]),
    ...mapMutations({
      add: 'increment' // 将 `this.add()` 映射为 `this.$store.commit('increment')`
    })
  }
}

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

复制

# Action

切记是异步的,通过dispatch提交

  • Action 提交的是 mutation,而不是直接变更状态。
  • Action 可以包含任意异步操作。
代码语言:javascript
复制
const store = new Vuex.Store({
  state: {
    count: 0
  },
  mutations: {
    increment (state) {
      state.count++
    }
  },
  actions: {
    increment (context) {
      context.commit('increment')
    },
    // 异步操作
    incrementAsync ({ commit }) {
      setTimeout(() => {
        commit('increment')
      }, 1000)
    }
  }
})

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

复制

# 1.Actions 支持同样的载荷方式和对象方式进行分发:
代码语言:javascript
复制
// 以载荷形式分发
store.dispatch('incrementAsync', {
  amount: 10
})

// 以对象形式分发
store.dispatch({
  type: 'incrementAsync',
  amount: 10
})

1 2 3 4 5 6 7 8 9 10

复制

# 2.来看一个更加实际的购物车示例,涉及到调用异步 API 和分发多重 mutation:
代码语言:javascript
复制
actions: {
  checkout ({ commit, state }, products) {
    // 把当前购物车的物品备份起来
    const savedCartItems = [...state.cart.added]
    // 发出结账请求,然后乐观地清空购物车
    commit(types.CHECKOUT_REQUEST)
    // 购物 API 接受一个成功回调和一个失败回调
    shop.buyProducts(
      products,
      // 成功操作
      () => commit(types.CHECKOUT_SUCCESS),
      // 失败操作
      () => commit(types.CHECKOUT_FAILURE, savedCartItems)
    )
  }
}

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

复制

# 3.在组件中分发 Action
代码语言:javascript
复制
import { mapActions } from 'vuex'

export default {
  // ...
  methods: {
    ...mapActions([
      'increment', // 将 `this.increment()` 映射为 `this.$store.dispatch('increment')`

      // `mapActions` 也支持载荷:
      'incrementBy' // 将 `this.incrementBy(amount)` 映射为 `this.$store.dispatch('incrementBy', amount)`
    ]),
    ...mapActions({
      add: 'increment' // 将 `this.add()` 映射为 `this.$store.dispatch('increment')`
    })
  }
}

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

复制

# 4.组合 Action
代码语言:javascript
复制
actions: {
  actionA ({ commit }) {
    return new Promise((resolve, reject) => {
      setTimeout(() => {
        commit('someMutation')
        resolve()
      }, 1000)
    })
  }
}

// 现在可以
store.dispatch('actionA').then(() => {
  // ...
})

// 在另外一个 action 中也可以:
actions: {
  // ...
  actionB ({ dispatch, commit }) {
    return dispatch('actionA').then(() => {
      commit('someOtherMutation')
    })
  }
}

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

复制

最后,如果我们利用 async / await,我们可以如下组合 action:

代码语言:javascript
复制
// 假设 getData() 和 getOtherData() 返回的是 Promise

actions: {
  async actionA ({ commit }) {
    commit('gotData', await getData())
  },
  async actionB ({ dispatch, commit }) {
    await dispatch('actionA') // 等待 actionA 完成
    commit('gotOtherData', await getOtherData())
  }
}

1 2 3 4 5 6 7 8 9 10 11

复制

# Module

未完待续

作者个人博客:午后南杂

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-7-21 2,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • # State
    • # 1.组件中获取
      • # 2.mapState 辅助函数
        • # 3.对象展开运算符
          • # 4.组件仍然保有局部状态
          • # Getter
            • # 1.通过属性访问
              • # 2.通过方法访问
              • # Mutation
                • # 1.普通commit提交
                  • # 2.提交载荷(Payload)
                    • # 3.使用常量替代 Mutation 事件类型
                      • # 4.Mutation 必须是同步函数
                        • # 5.在组件中提交 Mutation
                        • # Action
                          • # 1.Actions 支持同样的载荷方式和对象方式进行分发:
                            • # 2.来看一个更加实际的购物车示例,涉及到调用异步 API 和分发多重 mutation:
                              • # 3.在组件中分发 Action
                                • # 4.组合 Action
                                • # Module
                                领券
                                问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档