vuex 回顾

本文详细介绍了Vuex的状态管理库,包括安装和使用、State的单一状态树、如何获取和使用State、Getter的概念及用法、Mutation的提交规则和注意事项、以及Action的异步操作和组合。重点讲解了mapState、mapGetters、mapMutations和mapActions等辅助函数的使用,帮助理解Vuex在Vue应用中的核心概念和实践技巧。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

安装和使用

//npm install vuex --save
//src/store/index.js

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

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

export default store
//main.js
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from './store'

new Vue({
  render: (h) => h(App),
  router,
  store
}).$mount("#app");

正题

State 单一状态树

1、如何在Vue组件内获得Vuex的状态呢?

const Counter = {
  template: `<div>{{ count }}</div>`,
  computed: {
    count () {
      return this.$store.state.count
    }
  }
}

每当 store.state.count 变化的时候, 都会重新求取计算属性,并且触发更新相关联的 DOM。

2、mapState辅助函数摆脱每次将store里的状态声明为计算属性

当一个组件需要获取多个状态的时候,将这些状态都声明为计算属性会有些重复和冗余。为了解决这个问题,我们可以使用 mapState 辅助函数帮助我们生成计算属性。

//组件内使用
import { mapState } from 'vuex'
export defalut {
	//...
	computed: mapState({
		** 三种方式  'count' 等同于  state => state.count **
		count: state => state.count,
		countStr: 'count',
		countToUseThis(state) {
			return state.count + this.localCount
		}
	})
}

当映射的计算属性名称和state的子节点名称一致时,可以直接给mapState传一个字符串数组

computed: mapState([
	'count',
	'count1'
	...
])

3、mapState返回是一个对象,那组件自身使用的计算属性该怎么混搭使用呢?

mapState返回是一个对象,当我们组件内已经拥有了计算属性,该怎么办呢? 通常方法是将多个对象合并为一个,然后将最终值传个computed属性。 但是拥有 对象展开运算符 后, 使用就更为简单了。

computed:{
	localCompued() {},
	...mapState({
		** 三种方式  'count' 等同于  state => state.count **
		count: state => state.count,
		countStr: 'count',
		countToUseThis(state) {
		return state.count + this.localCount
	})
}

Getter

1、Getter是啥?

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

computed: {
  doneTodosCount () {
    return this.$store.state.todos.filter(todo => todo.done).length
  }
}

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

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

2、Getter怎么获取到State状态的值呢?

Getter 接受 state 作为其第一个参数, 接受其他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)
    },
    NoDoneTodos(state) {
		return state.todo.filter(todo => !todo.done)
	}
  }
})

3、我们怎么去访问getter里的只数据呢?

getters: {
  state: {
    todos: [
      { id: 1, text: '...', done: true },
      { id: 2, text: '...', done: false }
    ]
  },
  getTodoById: (state) => (id) => {
    return state.todos.find(todo => todo.id === id)
  }
}
this.$store.getters.getTodoById(2) // -> { id: 2, text: '...', done: false }

注意,getter 在通过方法访问时,每次都会去进行调用,而 不会缓存结果

4、mapGetter辅助函数

mapGetter函数可以将store 中的 getter 映射到 局部计算属性:

import { mapGetters } from 'vuex'

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

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

...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++
    }
  }
})

但是我们并不能直接调用mutation handler 。
这个选项更像是事件注册:“当触发一个类型为 increment 的 mutation 时,调用此函数。”要唤醒一个 mutation handler,你需要以相应的 type 调用 store.commit 方法:

this.$store.commit('increment')

1、mutation里面如何传参呢?

我们可以向 store.commit 传入额外的参数, 即 mutation 的载荷( payload ):

state:{
	count:0
},
mutation: {
	increment( state , n ) {
		state.count +=n;
	}
}
store.commit('increment', 10)

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

// ...
mutations: {
  increment (state, payload) {
    state.count += payload.amount
  }
}
store.commit('increment', {
  amount: 10
})

2、以对象的方式来注册方法

提交 mutation 的另一种方式是直接使用包含 type 属性的对象:

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

3、注意store中的状态都是响应式的,当我们是用mutation来更改状态的时候,要保证新的属性也是响应式

既然 Vuex 的 store 中的状态是响应式的,那么当我们变更状态时,监视状态的 Vue 组件也会自动更新。这也意味着 Vuex 中的 mutation 也需要与使用 Vue 一样遵守一些注意事项:

1、最好提前在你的 store 中初始化好所有所需属性。

2、当需要在对象上添加新属性时,你应该

  • 使用 Vue.set(obj, ‘newProp’, 123), 或者
  • 以新对象替换老对象。例如,利用对象展开运算符 (opens new window)我们可以这样写:
state.obj = {...state.obj, newprop: 123}

4、使用常量替代 Mutation 事件类型

const store = new Vuex.Store({
  state: { ... },
  mutations: {
   	SET_TOKEN: (state, token) => {
		//...
	}
  }
})

5、在组件中提交Mutation, 可以使用mapMutations 辅助函数

你可以在组件中使用 this.$store.commit(‘xxx’) 提交 mutation,或者使用 mapMutations 辅助函数将组件中的 methods 映射为 store.commit 调用(需要在根节点注入 store)

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')`
    })
  }
}

6、Mutation 必须是同步函数

一条重要的原则就是要记住 mutation 必须是同步函数。为什么?请参考下面的例子:

mutations: {
  someMutation (state) {
    api.callAsyncMethod(() => {
      state.count++
    })
  }
}

现在想象,我们正在 debug 一个 app 并且观察 devtool 中的 mutation 日志。每一条 mutation 被记录,devtools 都需要捕捉到前一状态和后一状态的快照。然而,在上面的例子中 mutation 中的异步函数中的回调让这不可能完成:因为当 mutation 触发的时候,回调函数还没有被调用,devtools 不知道什么时候回调函数实际上被调用——实质上任何在回调函数中进行的状态的改变都是不可追踪的。

Action

Action类似 于mutation , 不同在于

  • Action 提交的是 mutation , 而不是直接变更状态
  • Action 可以包含任意的异步操作

看下面一个简单的例子

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

Action 函数接受一个与 store 实例具有相同方法和属性的 context 对象,因此你可以调用 context.commit 提交一个 mutation,或者通过 context.state 和 context.getters 来获取 state 和 getters。当我们在之后介绍到 Modules 时,你就知道 context 对象为什么不是 store 实例本身了。

1、 用解构来简化代码

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

2、怎么触发 Action

Action 通过 store.dispatch 方法来触发:

store.dispatch('increment')

相比于 mutation 我们可以直接在 action 内部执行异步操作

actions: {
  incrementAsync ({ commit }) {
    setTimeout(() => {
      commit('increment')
    }, 1000)
  }
}

3、Action 支持同样的载荷方式和对象方式进行分发

// 以载荷形式分发
store.dispatch('incrementAsync', {
  amount: 10
})

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

购物车例子:

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)
    )
  }
}

4、组件内分发Action, 可以使用 mapActions辅助函数

你在组件中使用 this.$store.dispatch(‘xxx’) 分发 action,或者使用 mapActions 辅助函数将组件的 methods 映射为 store.dispatch 调用(需要先在根节点注入 store):

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')`
    })
  }
}

5、组合Action, 多个action的时候怎么知道顺序

Action 通常是异步的,那么如何知道 action 什么时候结束呢?更重要的是,我们如何才能组合多个 action,以处理更加复杂的异步流程?

首先,你需要明白 store.dispatch 可以处理被触发的 action 的处理函数返回的 Promise,并且 store.dispatch 仍旧返回 Promise:

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')
    })
  }
}

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

// 假设 getData() 和 getOtherData() 返回的是 Promise

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

一个 store.dispatch 在不同模块中可以触发多个 action 函数。在这种情况下,只有当所有触发函数完成后,返回的 Promise 才会执行。

### Vuex 4 的相关信息与使用方法 VuexVue.js 的官方状态管理库,用于集中存储和管理应用的状态。随着 Vue 3 和 TypeScript 的普及,Vuex 也升级到了第 4 版本。以下是关于 Vuex 4 的详细介绍以及其基本使用方法。 #### Vuex-ORM 插件简介 Vuex-ORM 是一个插件,它允许通过对象关系映射(Object-Relational Mapping, ORM)的方式访问 Vuex 存储的数据[^1]。该项目提供了更高级的功能来操作复杂的应用状态模型,适合需要数据库风格数据管理的场景。 --- #### Vuex 4 基础概念回顾 Vuex 的核心概念包括 State、Getters、Mutations 和 Actions。这些部分共同构成了 Vuex 的工作流程: 1. **State**: 应用程序的全局状态树。 2. **Getters**: 类似于计算属性,用来派生新的状态值[^5]。 3. **Mutations**: 修改状态的方法,必须是同步执行[^4]。 4. **Actions**: 处理异步逻辑并最终提交 Mutations 来更新状态[^2]。 --- #### Vuex 4 的安装与配置 (TypeScript 支持) 为了在项目中使用 Vuex 4,可以按照以下方式完成安装和初始化: ##### 安装依赖 ```bash npm install vuex@next --save ``` > 注意:`vuex@next` 是针对 Vue 3 设计的版本。 ##### 配置 Store 下面是一个基于 TypeScript 的简单 Vuex 4 配置示例: ```typescript // store.ts import { createStore } from 'vuex'; interface State { count: number; } const store = createStore<State>({ state: { count: 0, }, mutations: { increment(state) { state.count++; }, }, actions: { increment({ commit }) { commit('increment'); }, }, getters: { doubleCount(state): number { return state.count * 2; }, }, }); export default store; ``` ##### 在主文件引入 Store ```typescript // main.ts import { createApp } from 'vue'; import App from './App.vue'; import store from './store'; createApp(App).use(store).mount('#app'); ``` --- #### Vuex 4 中的关键特性 1. **支持 Composition API** Vuex 4 对 Vue 3 的 Composition API 提供了更好的兼容性。开发者可以直接在 `setup()` 函数中使用 `mapState`, `mapGetters`, `mapMutations`, 和 `mapActions` 等辅助函数[^3]。 示例代码如下: ```javascript import { useStore } from 'vuex'; export default { setup() { const store = useStore(); function increaseCounter() { store.dispatch('increment'); } return { increaseCounter }; }, }; ``` 2. **严格模式** Vuex 4 继续保留了严格模式功能,在开发环境中可以帮助捕获非法的状态变更。 3. **模块化设计** Vuex 4 可以轻松实现模块化的状态管理,便于大型项目的维护。 --- #### 使用 Getters 访问派生状态 如果需要对原始状态进行加工后再展示,可以通过定义 Getter 实现这一需求。例如: ```javascript // store.ts getters: { fullName(state) { return `${state.firstName} ${state.lastName}`; }, }, ``` 在组件中调用 Getter: ```javascript console.log(this.$store.getters.fullName); ``` --- ####
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值