Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

vuex mounted中取不到mapState的值

`<template>
  <div class="home">
    vuex action
    <div>点击获取数据</div>
    <ul>
      <li v-for="(item, index) of voteData" :key="index">
        {{ item.title }}
      </li>
    </ul>
  </div>
</template>

<script>
import { mapState } from 'vuex'
const mapStateObj = mapState(['voteData'])
export default {
  name: 'Home',
  data () {
    return {
      a: []
    }
  },
  create () {
  },
  computed: {
    ...mapStateObj
  },
  mounted () {
    this.$store.dispatch('getVoteData')
    console.log(this.voteData)
    this.a = this.voteData
    console.log(this.a)
  },
  methods: {

  }
}
</script>
`

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

给你举个例子

actions: {
    getVoteData: ({ commit }, payload) => {
      return new Promise(resolve => {
        api.get(...).then(res => {
            commit("...", res);
            resolve(res)
        })
      });
    }
  }

mounted 里面

mounted(){
    this.$store.dispatch('getVoteData').then(res => {
        这里就可以获取你想要的了
    })
}

学废了吗


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.5k users

...