详细分析 this.$store.dispatch 基本知识(附Demo)

前言

🤟 找工作,来万码优才:👉 #小程序://万码优才/r6rqmzDaXpYkJZF

爬虫神器,无代码爬取,就来:bright.cn

刚开始了解这种语法结构的时候很懵!看了网上的讲解也是一知半解!

后面才理解其奥妙之处,让我带你深入了解!!!

1. 基本知识

言归正传,先说一说基本的知识点

this.$store.dispatch 是 Vuex 中用于触发 Action 的方法

Vuex 是 Vue.js 的状态管理库,而 Action 是 Vuex 中用于执行异步操作的部分,比如:

  • 发送 AJAX 请求
  • 处理数据存储
  • 触发多个 Mutations 等

其基本语法如下:

this.$store.dispatch(actionName, payload);
  • actionName:要触发的 Action 名称(字符串)

  • payload(可选):传递给 Action 的参数(对象、数组、字符串等)

2. Demo

场景 1:登录后获取用户信息
通常,在用户登录成功后,我们希望:
通过 API 获取用户信息,把用户信息存入 Vuex,进行页面跳转

// store/index.js
const store = new Vuex.Store({
  state: {
    userInfo: null
  },
  mutations: {
    SET_USER_INFO(state, userInfo) {
      state.userInfo = userInfo;
    }
  },
  actions: {
    async GetUserInfo({ commit }) {
      const res = await axios.get('/api/user'); // 模拟 API 请求
      commit('SET_USER_INFO', res.data);
      return res.data;
    }
  }
});

触发 GetUserInfo:

this.$store.dispatch('GetUserInfo').then(userInfo => {
  console.log('用户信息:', userInfo);
});

场景 2:加载全局配置

某些应用需要在启动时加载配置,比如主题、权限、系统设置等:

// store/actions.js
export default {
  async LoadSettings({ commit }) {
    const res = await axios.get('/api/settings');
    commit('SET_SETTINGS', res.data);
  }
};

组件中调用:

this.$store.dispatch('LoadSettings');

场景 3:异步提交数据

在表单提交时,通常需要:

  1. 发送请求

  2. 更新 Vuex 状态

  3. 反馈操作结果

// store/actions.js
export default {
  async SubmitForm({ commit }, formData) {
    const res = await axios.post('/api/form', formData);
    commit('UPDATE_FORM_STATUS', res.data.status);
    return res;
  }
};

组件中调用:

this.$store.dispatch('SubmitForm', { name: 'Tom', age: 25 }).then(res => {
  console.log('提交成功:', res);
});

3. 对比

上述Demo,你可以看到其用法细节

最主要是其全局统筹 以及 异步

那先说说同步一般我们用什么,回顾如下:

3.1 同步

  • 示例:设置用户信息
    ✅ 适用于:
    本地更新状态(无需 API 请求)
    表单数据存储、主题切换等 UI 状态管理

如果只是简单地修改 Vuex state,不涉及 API 请求,可以直接使用 commit 提交 mutations

// store/index.js
const store = new Vuex.Store({
  state: {
    userInfo: null
  },
  mutations: {
    SET_USER_INFO(state, userInfo) {
      state.userInfo = userInfo;
    }
  }
});

在组件中使用 commit

<template>
  <button @click="setUserInfo">设置用户信息</button>
</template>

<script>
export default {
  methods: {
    setUserInfo() {
      this.$store.commit('SET_USER_INFO', { name: 'Tom', age: 25 });
    }
  }
};
</script>
  • 使用 mapMutations
    简化 commit 语法,使代码更简洁
    组件较多,需要多次调用 mutations
<template>
  <button @click="setUserInfo">设置用户信息</button>
</template>

<script>
import { mapMutations } from 'vuex';

export default {
  methods: {
    ...mapMutations(['SET_USER_INFO']),
    setUserInfo() {
      this.SET_USER_INFO({ name: 'Tom', age: 25 });
    }
  }
};
</script>
  • 直接修改 state(不推荐)
    虽然 Vuex 允许直接修改 state,但 不推荐 这样做
this.$store.state.userInfo = { name: 'Tom', age: 25 }; // 直接赋值

基本的对比方案:

方式commit 提交 mutationsmapMutations直接修改 state
是否同步 ✅ 是 ✅ 是 ✅ 是
是否推荐 ✅ 推荐 ✅ 推荐 ❌ 不推荐
代码简洁度 适中 简洁 直接修改
是否支持 Vuex 规范 ✅ 是 ✅ 是 ❌ 不是
适用场景 需要手动提交 mutations 多个组件共享 mutations临时修改(但不推荐)

3.2 异步

  • 方式 1:直接调用 API(不使用 Vuex)
    如果 Vuex 仅用于存储,而不涉及多个组件共享状态,可以直接在组件中调用 API,而不是通过 Vuex actions
    适用场景:仅当前组件需要数据,不需要全局共享。
axios.get('/api/user').then(res => {
  console.log('用户信息:', res.data);
});
  • 方式 2:使用 mapActions(简化调用)
    Vuex 提供 mapActions 帮助映射 actions,减少 this.$store.dispatch 书写量
<template>
  <button @click="getUserInfo">获取用户信息</button>
</template>

<script>
import { mapActions } from 'vuex';

export default {
  methods: {
    ...mapActions(['GetUserInfo']),
    async getUserInfo() {
      const userInfo = await this.GetUserInfo();
      console.log('用户信息:', userInfo);
    }
  }
};
</script>

基本的对比方案:

对比项this.$store.dispatch直接调用 APImapActions
是否使用 Vuex✅ 是❌ 否✅ 是
是否支持异步✅ 是✅ 是✅ 是
是否适用于全局状态管理✅ 是❌ 否✅ 是
代码结构结构清晰,符合 Vuex 规范代码分散,不利于维护代码简洁,适用于组件
适用场景需要全局管理的异步操作组件私有数据需要 Vuex actions 但不想使用 dispatch

3.3 this.$store.commit

说到全局共享,想到一个这个 this.$store.commit,用于 同步更新 Vuex state

this.$store.dispatch 主要用于 异步操作(如 API 请求)

同样也举例几个Demo

  • 示例:同步设置用户信息
    同步执行,立即更新 state
    适用于本地数据修改,比如修改用户信息、设置主题等
// store/index.js
const store = new Vuex.Store({
  state: {
    userInfo: null
  },
  mutations: {
    SET_USER_INFO(state, userInfo) {
      state.userInfo = userInfo;
    }
  }
});

在组件中使用 commit

<template>
  <button @click="setUserInfo">设置用户信息</button>
</template>

<script>
export default {
  methods: {
    setUserInfo() {
      this.$store.commit('SET_USER_INFO', { name: 'Tom', age: 25 });
    }
  }
};
</script>
  • 示例:登录后获取用户信息
    用于异步操作,比如 API 请求后再更新 state
    可以返回 Promise,支持 .then() 处理异步结果
// store/index.js
const store = new Vuex.Store({
  state: {
    userInfo: null
  },
  mutations: {
    SET_USER_INFO(state, userInfo) {
      state.userInfo = userInfo;
    }
  },
  actions: {
    async GetUserInfo({ commit }) {
      const res = await axios.get('/api/user'); // 模拟 API 请求
      commit('SET_USER_INFO', res.data);
      return res.data;
    }
  }
});

在组件中使用 dispatch

<template>
  <button @click="fetchUserInfo">获取用户信息</button>
</template>

<script>
export default {
  methods: {
    fetchUserInfo() {
      this.$store.dispatch('GetUserInfo').then(userInfo => {
        console.log('用户信息:', userInfo);
      });
    }
  }
};
</script>

commit vs dispatch 对比

对比项this.$store.committhis.$store.dispatch
是否同步✅ 是❌ 否(通常是异步)
是否涉及API❌ 否✅ 通常涉及 API 请求
是否返回 Promise❌ 否✅ 是
适用场景直接修改 state异步获取数据后再修改 state
示例this.$store.commit(‘SET_USER_INFO’, userInfo)this.$store.dispatch(‘GetUserInfo’)

4. 实战

举例一个实战中的Demo,感受下this.$store.dispatch的实际用法

以登录获取用户为例

this.$store.dispatch('SocialLogin', payload) 相当于在 Vuex actions 里封装了 socialLogin 这个 API 请求方法
如果不使用 Vuex,就需要在组件中手动引入 API 并调用

4.1 直接调用

<script>
import { socialLogin } from '@/api/login.js';

export default {
  methods: {
    async handleSocialLogin() {
      const res = await socialLogin('github', 'code123', 'stateXYZ');
      console.log('登录成功:', res);
    }
  }
};
</script>

✅ 优点:

  • 代码简单,直接调用 API,无需额外的 Vuex 配置

  • 适用于不需要全局存储的场景,比如单次请求,不需要在多个组件中共享

❌ 缺点:

  • 无法全局管理状态,如果多个组件都需要用 socialLogin 结果,每个地方都得手动管理

  • 可能导致代码重复,每个组件都要引入 socialLogin 并调用,代码维护困难

4.2 dispatch 调用

以下是实战中抽取的Demo:

在这里插入图片描述

(1)在 Vuex actions 里封装 API 调用

// store/actions.js
import { socialLogin } from '@/api/login.js';

export default {
  async SocialLogin({ commit }, { type, code, state }) {
    const res = await socialLogin(type, code, state);
    commit('SET_USER_INFO', res.data); // 假设返回用户信息
    return res;
  }
};

(2)在组件中使用 Vuex 调用

<script>
export default {
  methods: {
    async handleSocialLogin() {
      const res = await this.$store.dispatch('SocialLogin', {
        type: 'manong',
        code: 'code123',
        state: 'stateXYZ'
      });
      console.log('登录成功:', res);
    }
  }
};
</script>

✅ 优点:

  • 支持全局状态管理:如果登录成功,可以在 Vuex state 里存储用户信息,所有组件都能访问

  • 代码更清晰:组件不需要关心 socialLogin 的实现细节,只用 dispatch 调用,减少 API 引入

  • 易于扩展:如果以后 socialLogin 需要额外处理,比如记录日志、触发事件,只需修改 Vuex actions,而不是修改每个组件的逻辑

❌ 缺点:

  • 需要额外配置 Vuex store,对于简单需求可能会显得麻烦
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码农研究僧

你的鼓励将是我创作的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值