Vue3 使用mapState

简介: Vue3 使用mapState

如何在 Vue3 中更方便快捷地 获取 Vuex 中state 中的多个值

假设 在 state 存在值,需要全部获取

state(){
   
    return {
   
        name:'huai',
        age:'18',
        height:'180',
        sex:'男'
    }
}

页面中展示

<p>{
   {
   name}}</p>
<p>{
   {
   age}}</p>
<p>{
   {
   height}}</p>
<p>{
   {
   sex}}</p>
Vue2 可以直接使用 mapState 直接放到 computed中计算
// vue2 
computed:{
   
    ...mapState(["name","age","height","sex"]),
}

2.Vue3 中提供了 useStore() 进行获取。但不能直接像Vue2 那样通过mapState() 进行一次性获取多个值,只能一次获取一个

// vue3
import {
   computed} from 'vue'
import {
    useStore} from 'vuex';
setup(){
   
    const store = useStore();
    const name = computed(()=>store.state.name);
    const age = computed(()=>store.state.age);
    const height = computed(()=>store.state.height);
    const sex = computed(()=>store.state.sex);

    return {
   
        name,
        age,
        height,
        sex
    }
}

如何在 Vue3 中 使用 mapState() 一次获取vuex中 state 多个值呢,
3.1. 需要解决的问题: 1.setup中没有this 指向 2.mapState的返回值
3.2. 解决办法
mapState 返回值 是一个对象,{name:function,age:function},对象的值是一个函数,恰好computed 的参数可以是函数返回值,只要解决了 computed中的$store 指向就可以,恰好 Vue3提供了 useStore(),然后使用apply() 或者 bind() 进行 指向

import {
    computed } from 'vue';
import {
    useStore , mapState } from 'vuex';

    setup(){
   
        const store = useStore();
        // 传入数组
        const storeStateFns = mapState(["name","age","height","sex"]);
        const storeState ={
   };
        Object.keys(storeStateFns).forEach(Fnkey => {
   
            // setup中无this 指向,在 compute中计算state时需要  $store 指向 ,所以使用bind() 绑定 $store
            const fn = storeStateFns[Fnkey].bind({
    $store: store });
            storeState[Fnkey] = computed(fn)
        })
        return{
   
             // 解构
            ...storeState
        }
    }

封装

// useState.js
import {
    useStore, mapState } from 'vuex'
import {
    computed } from 'vue';

export default function(mapper) {
   
    // 获取key,并判断是否存在
    const store = useStore();
    // 获取相应的对象 : {name:function,age:function}
    const storeStateFns = mapState(mapper);
    // 进行 $store 指向 ,并赋值
    const storeState = {
   }
        Object.keys(storeStateFns).forEach(Fnkey => {
   
            // setup中无this 指向,在 compute中计算state时需要  $store 指向 ,所以使用bind() 绑定 $store
            const fn = storeStateFns[Fnkey].bind({
    $store: store });
            storeState[Fnkey] = computed(fn)
        })
    // 返回值
    return storeState;
}

使用

import hookStoreState from './useState.js'

export default {
   
  setup() {
   
    // 传入数组
    const storeStateArr = hookStoreState(["name", "age", "counter"]);
    // 传入对象,可以避免参数名重复
    const storeStateObj = hookStoreState({
   
      sName: (state) => state.name,
      sAge: (state) => state.age,
      sHeight: (state) => state.height,
      sSex:(state)=>state.sex
    });
    return {
   
      ...storeStateArr,
      ...storeStateObj,
    };
  },
};
目录
相关文章
|
7天前
|
存储 JavaScript 前端开发
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
【10月更文挑战第21天】 vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
vue3的脚手架模板你真的了解吗?里面有很多值得我们学习的地方!
|
10天前
|
API
vue3知识点:provide 与 inject
vue3知识点:provide 与 inject
23 4
vue3知识点:provide 与 inject
|
10天前
|
API
vue3知识点:readonly 与 shallowReadonly
vue3知识点:readonly 与 shallowReadonly
18 1
vue3知识点:readonly 与 shallowReadonly
|
4天前
|
JavaScript 前端开发 开发者
Vue 3中的Proxy
【10月更文挑战第23天】Vue 3中的`Proxy`为响应式系统带来了更强大、更灵活的功能,解决了Vue 2中响应式系统的一些局限性,同时在性能方面也有一定的提升,为开发者提供了更好的开发体验和性能保障。
16 7
|
5天前
|
前端开发 数据库
芋道框架审批流如何实现(Cloud+Vue3)
芋道框架审批流如何实现(Cloud+Vue3)
18 3
|
4天前
|
JavaScript 数据管理 Java
在 Vue 3 中使用 Proxy 实现数据双向绑定的性能如何?
【10月更文挑战第23天】Vue 3中使用Proxy实现数据双向绑定在多个方面都带来了性能的提升,从更高效的响应式追踪、更好的初始化性能、对数组操作的优化到更优的内存管理等,使得Vue 3在处理复杂的应用场景和大量数据时能够更加高效和稳定地运行。
19 1
|
4天前
|
JavaScript 开发者
在 Vue 3 中使用 Proxy 实现数据的双向绑定
【10月更文挑战第23天】Vue 3利用 `Proxy` 实现了数据的双向绑定,无论是使用内置的指令如 `v-model`,还是通过自定义事件或自定义指令,都能够方便地实现数据与视图之间的双向交互,满足不同场景下的开发需求。
21 1
|
6天前
|
前端开发 JavaScript
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
简记 Vue3(一)—— setup、ref、reactive、toRefs、toRef
|
7天前
Vue3 项目的 setup 函数
【10月更文挑战第23天】setup` 函数是 Vue3 中非常重要的一个概念,掌握它的使用方法对于开发高效、灵活的 Vue3 组件至关重要。通过不断的实践和探索,你将能够更好地利用 `setup` 函数来构建优秀的 Vue3 项目。
|
10天前
|
JavaScript Java API
vue3知识点:setup
vue3知识点:setup
23 5