NuxtJS + Vuex - 商店中的数据

时间:2017-09-28 21:19:06

标签: javascript vuejs2 vuex nuxt.js

使用NuxtJS(一个VueJS框架),我试图从布局模板中的REST API中获取一堆数据(不能使用经典的fech()或asyncData()方法)

所以我正在使用vuexnuxtServerInit()操作。 这样,无论当前页面如何,我都应该能够在加载应用程序期间直接收集所有数据。

但我无法让它发挥作用。

这是商店的map.js文件:

import axios from 'axios'

const api = 'http://rest.api.localhost/spots'
 
export const state = () => ({
	markers: null
})

export const mutations = {
	init (state) {
		axios.get(api)
			.then((res) => {
				state.markers = res.data
			})
	}
}

export const actions = {
	init ({ commit }) {
		commit('init')
	}
}

index.js(可以触发nuxtServerInit()):

export const state = () => {}

export const mutations = {}

export const actions = {
	nuxtServerInit ({ commit }) {
		// ??
		console.log('test')
	}
}

但我无法让它发挥作用。医生说:

  

如果您使用的是Vuex商店的模块模式,则只有主模块(在store / index.js中)才会收到此操作。您需要从那里链接模块操作。

但我不知道怎么做。如何调用另一个模块/文件中定义的操作?

我试图复制各种例子,但从未让它们起作用;这是我能想到的最好的。

我错过了什么?如果需要,可以使用repostore folder

谢谢!

1 个答案:

答案 0 :(得分:5)

几周前我遇到了同样的问题,这就是我解决的问题:

存储/ index.js

import Vue from 'vue'
import Vuex from 'vuex'
import auth from './modules/auth'
import auth from './modules/base'

Vue.use(Vuex)

export default () => {
  return new Vuex.Store({
    actions: {
      nuxtServerInit ({ commit }, { req }) {
        if (req.session.user && req.session.token) {
          commit('auth/SET_USER', req.session.user)
          commit('auth/SET_TOKEN', req.session.token)
        }
      }
    },
    modules: {
      auth,
      base
    }
  })
}

商品/模块/ auth.js

const state = () => ({
  user: null,
  token: null
})

const getters = {
  getToken (state) {
    return state.token
  },
  getUser (state) {
    return state.user
  }
}

const mutations = {
  SET_USER (state, user) {
    state.user = user
  },
  SET_TOKEN (state, token) {
    state.token = token
  }
}

const actions = {
  async register ({ commit }, { name, slug, email, password }) {
    try {
      const { data } = await this.$axios.post('/users', { name, slug, email, password })
      commit('SET_USER', data)
    } catch (err) {
      commit('base/SET_ERROR', err.response.data.message, { root: true })
      throw err
    }
  },
  /* ... */
}

export default {
  namespaced: true,
  state,
  getters,
  mutations,
  actions
}


<小时/> 请注意行commit('base/SET_ERROR', err.response.data.message, { root: true }),它在另一个模块(称为base)中调用变异。以及namespaced: true选项,这是必须的选择。

要了解有关vuex模块中命名空间的更多信息,请参阅文档:https://vuex.vuejs.org/en/modules.html