我的商店遇到问题,无法使用Nuxt和Axios从API获取类别。这是我的请求,位于我的商店文件夹中的index.js文件中。
export const state = () => ({
categories: []
})
export const getters = {
categories (state) {
return state.categories
}
}
export const mutations = {
SET_CATEGORIES (state, categories) {
state.categories = categories
}
}
export const actions = {
async nuxtServerInit({ commit }) {
let response = await this.$axios.$get('categories')
commit('SET_CATEGORIES', response.data)
}
}
This is the response I receive after Nuxt has built the app
感谢并希望有人能提供帮助。