vuex 모듈을 나누면state의 값을 얻을 수 있습니다

2487 단어 vuex모듈state
문제: vuex 모듈을 나누면 한 모듈이 다른 모듈의state 값을 어떻게 얻고 다른 모듈을 조정하는 방법?
생각:
1. 네임스페이스를 통한 값 - this.$store.state.car.list//OK
2. 이 속성을 정의하는 getter 방법을 통해 방법이 전역적으로 등록되어 이름 공간이 존재하지 않기 때문에this를 통해 직접 호출할 수 있습니다.
this.$store.state.car.carGetter
저는 카 모듈에서state,getters를 정의했습니다.
this.$store.state.car.목록은 값을 받을 수 있습니다.
하지만,this.$store.state.car.carGetter 오류,
저기요.구성 요소에서 이 getters를 호출하는 방법,

//car.js
state = {
  list: []
}
getters = {
  carGetter: state => {
    return state.list.filter('');
  }
}
new Vuex.Store({
  getters: {
    test: state => {
      return '02';
    } 
  },
  modules: { car }  
})
//  
this.$store.state.car.list // OK
this.$store.state.car.carGetter // undefined
this.$store.state.carGetter //  ok,  getters root ?
해결됨!
모듈 내부의action,mutation,getter는 현재 전역 이름 공간에 등록되어 있습니다. 이렇게 하면 여러 모듈이 같은mutation이나action에 응답할 수 있습니다.
보충 지식: vuex 모듈을 사용할 때state의 데이터 문법 얻기
일반 문법
this.$store.state.[어느 데이터]
모듈식 구문:
this.$store.state.[어느 모듈].[어느 데이터]

<template>
<div class="panel panel-info">
   <div class="panel-heading">
     <h4 class="panel-title"> </h4>
   </div>
   <div class="panel-body">
     <p v-if="!CartList.length"> , 。</p>
     <CartListItem v-for="ele in CartList" :key="ele.id" :cartlist-iteam="ele"/>
   </div>
   <div class="panel-footer">
     <a href="" class="btn btn-block btn-danger"> ({{cartQuantity}})</a>
     <a href="" class="btn btn-block btn-info"> ({{cartTotal}})</a>
   </div>
 </div>
</template>

<script>
import CartListItem from './CartListItem'
import { mapGetters } from 'vuex'
export default {
 name: 'CartList',
 components: {
  CartListItem
 },
 computed: {
  CartList () {
   return this.$store.state.cartModule.updateCartList
  },
  ...mapGetters(['cartQuantity', 'cartTotal'])
 }
}
</script>
상기 vuex 분할 모듈을 통해state의 값을 얻는 것은 바로 편집자가 여러분에게 공유한 모든 내용입니다. 여러분께 참고가 되고 저희를 많이 사랑해 주시기 바랍니다.

좋은 웹페이지 즐겨찾기