Vuex - 错误“无法读取未定义的属性(读取“设置”)”当使用 Vue.set() 时

发布于 2025-01-09 18:29:12 字数 783 浏览 0 评论 0原文

尝试使用 Vue.set() 时,我在控制台中收到以下错误: 输入图片此处描述

我缺少导入吗?我正在尝试更新对象数组 - 有人可以帮忙吗?

谢谢

import { VueElement } from 'vue'
import Vue from 'vue'
import Vuex from 'vuex'
import { createStore } from 'vuex'

export default createStore({
  state: {
    activeLightScenes: [
      {'room': null, 'scene': null},
      {'room': null, 'scene': null},
      {'room': null, 'scene': null},
      {'room': null, 'scene': null},
    ]
  },
  mutations: {
    updateLightScenes(state, room, scene){

      Vue.set(state.activeLightScenes, 'room', room, 'scene', scene)
    },
  },

  getters:{


  },

  actions: {

  },

  modules: {

  },

})

I am getting the following error in console when trying to use Vue.set():
enter image description here

Am I missing imports? I am trying to update an array of objects - please can someone help?

Thanks

import { VueElement } from 'vue'
import Vue from 'vue'
import Vuex from 'vuex'
import { createStore } from 'vuex'

export default createStore({
  state: {
    activeLightScenes: [
      {'room': null, 'scene': null},
      {'room': null, 'scene': null},
      {'room': null, 'scene': null},
      {'room': null, 'scene': null},
    ]
  },
  mutations: {
    updateLightScenes(state, room, scene){

      Vue.set(state.activeLightScenes, 'room', room, 'scene', scene)
    },
  },

  getters:{


  },

  actions: {

  },

  modules: {

  },

})

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔少女心 2025-01-16 18:29:12

您可能安装了 Vue 3,并且 vue@3 没有默认导出,因此 Vue 将为 undefined,从而导致您观察到的错误Vue.set。但是,在 Vue 3 中,您不需要使用像 Vue.set 这样的东西。等效的代码只是直接设置变量。

假设您还传递了 state.activeLightScenes[] 中元素的数组索引,该索引将包含指定的 roomscene 参数:

export default  createStore({
  ⋮
  mutations: {
    updateLightScenes(state, room, scene, index) {
      // Vue.set(state.activeLightScenes, 'room', room, 'scene', scene) ❌ remove this
      state.activeLightScenes[index].room = room
      state.activeLightScenes[index].scene = scene
    },
  }
})

You likely have Vue 3 installed, and vue@3 has no default export, so Vue would be undefined, leading to the error you observed with Vue.set. However, in Vue 3, you don't need to use something like Vue.set. The equivalent code would just be setting the variable directly.

Assuming you also pass an array index of the element in state.activeLightScenes[] that is to contain the specified room and scene arguments:

export default  createStore({
  ⋮
  mutations: {
    updateLightScenes(state, room, scene, index) {
      // Vue.set(state.activeLightScenes, 'room', room, 'scene', scene) ❌ remove this
      state.activeLightScenes[index].room = room
      state.activeLightScenes[index].scene = scene
    },
  }
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文