programing

메서드 내 로컬 변수 상태에 액세스하는 방법 - Vue?

goodsources 2022. 7. 11. 21:33
반응형

메서드 내 로컬 변수 상태에 액세스하는 방법 - Vue?

메서드 내 로컬 변수 상태에 액세스하는 방법 - Vue?

팝업 창을 열 수 있도록 대화상자 값을 설정해야 합니다.

포팅으로 Then return data를 로드한 후 popUp을 열고 싶습니다.

import { mapState, mapGetters, mapActions } from 'vuex'
export default {
  name: 'PageIndex',
  data () {
    return {
      dialog: false,
    }
  },
  methods: {
    ...mapActions('example', ['retrievePratica']),
    aulaPratica (tipo, aula) {
      var data = { 'tipo': tipo, 'aula': aula }
      this.retrievePratica(data).then(function () {
        this.$store.state.dialog = true    <------ Here
      })
    }
  }
}

화살표 기능을 사용하여 로컬 데이터에 액세스할 수 있습니다.dialog타고this.dialog

this.retrievePratica(data)
  .then(() => {
    this.dialog = true
  })

언급URL : https://stackoverflow.com/questions/55958835/how-to-access-the-state-of-a-local-variable-within-a-method-vue

반응형