vue中在vuex的actions中请求数据实例

今天小编就为大家分享一篇vue中在vuex的actions中请求数据实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

我废话不多说了,直接上代码吧!

actions.js getCertificationStatus(context, {vm:vm,type:type}){ return new Promise((resolve, reject) => { axios.post('/realNameUtils/gotoStatusPage') .then((res)=>{ context.commit('certificationStatus',res.data.content) if(type=='1'){//个人 }else if(type=='2'){//企业 }else if(type=='0'){//个人+企业 } resolve() }) }) } getters.js certificationStatus :(state)=>{ return state.certificationStatus } mutations.js var state = { certificationStatus: null } const mutations= { certificationStatus(state,data){ state.certificationStatus = data } } 组件: import {mapGetters} from 'vuex' computed: { ...mapGetters([ "certificationStatus" ]) } this.$store.dispatch('getCertificationStatus',{vm:this,type:'1'})

就是这样就可以了 有疑问可以一起讨论哦

以上这篇vue中在vuex的actions中请求数据实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/a64db5386ef383ce19e974b89b318d1e.html