在vuex裏 我想統一管理異步的操做,受到redux-thunk的啓發,能夠讓vuex派發action,在action執行異步請求axios,在把異步獲取的數據到mutation,但感受這麼作會把接口數據跟state綁定,感受仍是按照具體環境靈活應用較好。vue
假如我組件的mounted 有這麼個獲取接口數據的方法 getGeneios
getGene(){ this.$store.dispatch('getGeneAction'); //getDatamingData().then(this.getGeneSucc); /* axios.get(urlApi.datamining) .then(this.getGeneSucc); */ },
*註釋掉的是之前直接在方法中獲取接口數據vuex
在個人store裏actions.jsredux
getGeneAction(ctx,item){ console.log('getGeneAction'); //調用axios getDatamingData().then((res) => { ctx.commit('GETGENEMUTATION',res); }); }
派發一個GETGENEMUTATION mutationaxios
GETGENEMUTATION(state,item){ //console.log(item.data.obj); state.geneObj = item.data.obj; }
這樣就有了一個vuex異步
我以前的作法是在父組件獲取異步數據 而後把數據再派發給子組件 子組件在對數據進行vuex操做 。this
具體如何管理數據仍是看具體的環境。url