在 Vue 3 和 Pinia 中,当您在组件中使用 `ref` 来存储响应式状态时,需要确保正确地从 Pinia store 中读取和同步状态。

 问题描述 :

import { ref } from 'vue'
import { defineStore } from 'pinia'
import { RequestGet } from '@/utils/Request.js'

export const useSystemStore = defineStore('system', () => {
    const menus = ref([])
    const bottomMenus = ref([])

    async function loadMenus() {
        menus.value = await RequestGet(APIS.SYSTEM.MENU)
    }
    async function loadBottomMenus() {
        bottomMenus.value = await RequestGet(APIS.SYSTEM.BOTTOM_MENU)
        console.log(bottomMenus.value)
    }

    return {
        menus,
        loadMenus,
        bottomMenus,
        loadBottomMenus
    }
})
vue3 怎么在组件中调用这个loadBottomMenus
获取bottomMenus参数

在 Vue 3 和 Pinia 中,当您在组件中使用 `ref` 来存储响应式状态时,需要确保正确地从 Pinia store 中读取和同步状态。如果无法获取到 `systemStore.bottomMenus`,可能是因为以下几个原因:

1. **异步加载状态**:如果 `systemStore.bottomMenus` 是在异步操作 `loadBottomMenus` 中被赋值的,那么您需要等待该异步操作完成后才能获取到值。

2. **响应式处理**:确保 `bottomMenus` 在 store 中被定义为一个响应式状态(使用 `ref` 或 `reactive`)。

3. **组件初始化时机**:`onMounted` 钩子可能在 `systemStore.bottomMenus` 被填充之前就被调用了。

为了解决这个问题,您可以采取以下步骤:

### 1. 确保 `bottomMenus` 在 Store 中正确初始化

在您的 store 中,`bottomMenus` 应该使用 `ref` 来创建响应式状态:

```javascript
// 在 store 中
export const useSystemStore = defineStore('system', {
    state: () => ({
        menus: ref([]),
        bottomMenus: ref([]), // 确保这里使用了 ref
    }),
    // ...
});
```

### 2. 等待异步操作完成

由于 `loadBottomMenus` 是一个异步函数,您需要等待它完成后才能访问 `bottomMenus` 的值。可以使用 `async/await` 来处理这个异步操作:

```javascript
onMounted(async () => {
    await systemStore.loadBottomMenus(); // 等待异步操作完成
    bottomMenuList.value = systemStore.bottomMenus;
    menuSelected.value = bottomMenuList.value[0] || {}; // 确保默认值存在
    console.log(bottomMenuList.value);
});
```

### 3. 监听 Store 中状态的变化

如果 `bottomMenus` 的值在其他地方或之后被更新,您可能需要在组件中监听这个状态的变化:

```javascript
watch(() => systemStore.bottomMenus, (newVal) => {
    bottomMenuList.value = newVal;
    if (!menuSelected.value) {
        menuSelected.value = newVal[0] || {};
    }
});
```

### 4. 确保 Store 的正确导入和使用

确保 `useSystemStore` 被正确导入,并且 `systemStore` 实例被正确创建。

### 5. 检查 Store 中状态的更新逻辑

确保 `loadBottomMenus` 方法在接收到数据后正确地更新了 `bottomMenus` 状态:

```javascript
async function loadBottomMenus() {
    // 假设您有一个 API 请求
    const data = await RequestGet(APIS.SYSTEM.BOTTOM_MENU);
    bottomMenus.value = data; // 确保赋值操作正确
}
```

通过上述步骤,您应该能够在组件中获取到 `systemStore.bottomMenus` 的值。如果问题仍然存在,请检查网络请求是否成功返回了数据,以及是否有其他代码逻辑影响了状态的更新。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值