TypeError:无法读取未定义的属性“getters”

Posted

技术标签:

【中文标题】TypeError:无法读取未定义的属性“getters”【英文标题】:TypeError: Cannot read property 'getters' of undefined 【发布时间】:2019-06-28 19:30:57 【问题描述】:

我正在尝试测试一个引用 Vuex 商店的基本 Vue 组件。我以为我按照 Vue 的示例 (https://vue-test-utils.vuejs.org/guides/using-with-vuex.html#mocking-getters) 到了 T,但它似乎不起作用。

我收到标题中提到的错误。

const localVue = createLocalVue()
localVue.use(Vuex)

describe('Navbar.vue', () => 
  let store: any
  let getters: any

  beforeEach(() => 
    getters: 
      isLoggedIn: () => false
    

    store = new Vuex.Store(
      getters
    )
  )

  it('renders props.title when passed', () => 
    const title = 'Smart Filing'
    const wrapper = shallowMount(Navbar, 
      propsData:  title ,
      i18n,
      store,
      localVue,
      stubs: ['router-link']
    )

    expect(wrapper.text()).to.include(title)
  )
)

我正在使用类组件,所以可能与它有关?

@Component(
  props: 
    title: String
  ,
  computed: mapGetters(['isLoggedIn'])
)
export default class Navbar extends mixins(Utils) 

提前致谢。

【问题讨论】:

你的 getter 有没有被命名空间? 【参考方案1】:

这里的“getter”没有正确分配:

  beforeEach(() => 
    getters: 
      isLoggedIn: () => false
    

    store = new Vuex.Store(
      getters
    )
  )

它应该是getters = ... 而不是getters: ...,因为你对 beforeEach 的参数是一个函数而不是一个对象。

我可以确认它确实正确地写在了文档中。

祝你好运!

【讨论】:

很好,但不幸的是它仍然无法正常工作 文档中是这样写的吗? vuex.vuejs.org/guide/getters.html【参考方案2】:

想通了。

在组件中声明 getter 时,请务必定义要使用的变量。

@Component(
  props: 
    title: String
  ,
  computed: mapGetters(['isLoggedIn'])
)
export default class Navbar extends mixins(Utils) 
  isLoggedIn!: boolean <== I did not have this before. 
  ...

编辑:另外,我实际上并没有在测试中使用模拟吸气剂,所以你甚至不需要模拟商店。您需要做的就是在组件上声明该变量。

【讨论】:

【参考方案3】:

对我来说,当我尝试加载两个不同的商店实例时出现了这个错误消息,它们都导入了同一个模块。默认情况下,Vuex 假设一个 store。发生了一些奇怪的事情,结果就是这个错误。

【讨论】:

以上是关于TypeError:无法读取未定义的属性“getters”的主要内容,如果未能解决你的问题,请参考以下文章

TypeError:无法读取未定义的属性“findAll”(expressjs)

TypeError:无法读取未定义的属性(读取“问题”)

TypeError:无法读取未定义的属性“babel”

TypeError:无法读取未定义的属性(读取“匹配”):

TypeError:无法读取未定义的属性“存在”

TypeError:无法在 gitlab 中读取未定义的属性(读取“读取”)