我在另一个项目中使用laravel,vue和vuex,代码几乎相同,而且工作得很好。我正在尝试调整我在这个项目中所做的事情,使用该代码作为样板,但我不断收到错误:
[vuex] unknown action type: panels/GET_PANEL
我在商店目录中有一个index.js,然后导入命名空间的商店模块,以保持整洁:
import Vue from "vue";
import Vuex from "vuex";
var axios = require("axios");
import users from "./users";
import subscriptions from "./subscriptions";
import blocks from "./blocks";
import panels from "./panels";
Vue.use(Vuex);
export default new Vuex.Store({
state: {
},
actions: {
},
mutations: {
},
modules: {
users,
subscriptions,
blocks,
panels
}
})
panels.js:
const state = {
panel: []
}
const getters = {
}
const actions = {
GET_PANEL : async ({ state, commit }, panel_id) => {
let { data } = await axios.get('/api/panel/'+panel_id)
commit('SET_PANEL', data)
}
}
const mutations = {
SET_PANEL (state, panel) {
state.panel = panel
}
}
export default {
namespaced: true,
state,
getters,
actions,
mutations
}
以下是我的vue组件的脚本部分:
<script>
import { mapState, mapActions } from "vuex";
export default {
data () {
return {
}
},
mounted() {
this.$store.dispatch('panels/GET_PANEL', 6)
},
computed:
mapState({
panel: state => state.panels.panel
}),
methods: {
...mapActions([
"panels/GET_PANEL"
])
}
}
</script>
这是我app.js的相关代码:
import Vue from 'vue';
import Vuex from 'vuex'
import store from './store';
Vue.use(Vuex)
const app = new Vue({
store: store,
}).$mount('#bsrwrap')
UPDATE ::我试图从vuex中记录初始状态,我得到:挂钩错误:“ReferenceError:面板未定义。我尝试使用另一个模块存储创建另一个非常基本的组件,也没有运气。我检查了我的vuex版本,3.1.0,最新的。似乎是app.js或store中的东西,因为问题在多个模块中持续存在。
获得命名空间模块后,请使用以下映射:
...mapActions("panels", ["GET_PANEL"])
第一个参数是模块的命名空间,第二个参数是要映射的操作数组。