Nuxt + Vuex-如何将Vuex模块分解为单独的文件?

时间:2018-11-23 12:32:53

标签: javascript vue.js vuex nuxt.js nuxt

在Nuxt文档(here)中说,“您可以选择将模块文件分解为单独的文件:state.jsactions.jsmutations.js和{{1 }}。'

我似乎找不到任何执行此操作的示例-将根目录下的Vuex存储大量分解为getters.jsstate.jsactions.js和{{ 1}},并放入单个模块文件中,但与将模块本身分解无关。

所以我目前有:

mutations.js

我想拥有的是:

getters.js

要尝试这一点,我在 ├── assets ├── components └── store ├── moduleOne.js ├── moduleTwo.js └── etc... 中拥有

     ├── assets
     ├── components
     └── store
           └── moduleOne
                 └── state.js
                 └── getters.js
                 └── mutations.js
                 └── actions.js
           └── moduleTwo
                └── etc...

/store/moduleOne/state.js中,我有:

export const state = () => {
    return {
        test: 'test'
    }
};

在我的组件中,我正在使用/store/moduleOne/getters.js

但是,使用调试器和Vue devtools,似乎无法在getters文件中访问状态-似乎正在本地文件中寻找状态,因此export const getters = { getTest (state) { return state.test; } } 是未定义的。

尝试将$store.getters['moduleOne/getters/getTest']文件中的state.test导入我的state文件中似乎也不起作用。

在Nuxt中,有没有人举过例子说明他们如何分解商店?

3 个答案:

答案 0 :(得分:4)

在 nuxt 2.14 版^ 中,您不必在商店根 index.js 文件中创建它。

import Vuex from 'vuex';
import apiModule from './modules/api-logic';
import appModule from './modules/app-logic';

const createStore = () => {
  return new Vuex.Store({
    namespaced: true,
    modules: {
      appLogic: appModule,
      api: apiModule
    }
  });
};

export default createStore

但是,您可以将根 index.js 文件保留为默认值或执行您需要的操作。无需导入。

store/index.js

export const state = () => ({
  counter: 0
})

export const mutations = {
  increment(state) {
    state.counter++
  }
}

export const actions = {
   async nuxtServerInit({ state, commit }, { req }) {
   const cookies = this.$cookies.getAll() 
   ...
}

这就是它的样子,非常简单。

文件夹结构

?store
 ┣ ?auth
 ┣ ?utils
 ┣ ?posts
 ┃ ┗ ?actions.js
 ┃ ┗ ?mutations.js
 ┃ ┗ ?getters.js
 ┃ ┗ ?index.js
 ┣ index.js

示例

store/posts/index.js 你可以只放状态函数。您不需要导入操作、getter 和变更。

export const state = () => ({ 
   comments: []
})

store/posts/actions.js

const actions = {
  async getPosts({ commit, state }, obj) {
    return new Promise((resolve, reject) => { 
       ...
    }
  }
}

export default actions

store/posts/mutations.js

 const mutations = {
    CLEAR_POST_IMAGE_CONTENT: (state) => {
       state.post_image_content = []
    }
 }
 
 export default mutations

store/posts/getters.js

const getters = {
    datatest: (state) => state.datatest,
    headlineFeatures: (state) => state.headlineFeatures,
}

export default getters

效果与@CMarzin 的回答相同,但更清晰

答案 1 :(得分:2)

我正在使用nuxt 2.1.0 如果您想要这样的东西:

Store module Vuex with Nuxt

在我的store/index.js

确保您已命名间隔:true

import Vuex from 'vuex';
import apiModule from './modules/api-logic';
import appModule from './modules/app-logic';

const createStore = () => {
  return new Vuex.Store({
    namespaced: true,
    modules: {
      appLogic: appModule,
      api: apiModule
    }
  });
};

export default createStore

在moduleOne

在我的store/api-logic/index.js

import actions from './actions';
import getters from './getters';
import mutations from './mutations';

const defaultState = {
  hello: 'salut I am module api'
}

const inBrowser = typeof window !== 'undefined';
// if in browser, use pre-fetched state injected by SSR
const state = (inBrowser && window.__INITIAL_STATE__) ? window.__INITIAL_STATE__.page : defaultState;

export default {
  state,
  actions,
  mutations,
  getters
}

在我的store/api-logic/getters.js

export default {
  getHelloThere: state => state.hello
}

在第二个模块中

在我的store/app-logic/index.js

import actions from './actions';
import getters from './getters';
import mutations from './mutations';

const defaultState = {
  appLogicData: 'bonjours I am module Logic'
}

const inBrowser = typeof window !== 'undefined';
// if in browser, use pre-fetched state injected by SSR
const state = (inBrowser && window.__INITIAL_STATE__) ? window.__INITIAL_STATE__.page : defaultState;

export default {
  state,
  actions,
  mutations,
  getters
}

在我的store/app-logic/getters.js

export default {
  getAppLogicData: state => state.appLogicData
}

应用中的任何地方

 computed: {
  ...mapGetters({
   logicData: 'getAppLogicData',
   coucou: 'getHelloThere'
 })
},
mounted () {
  console.log('coucou', this.coucou) --> salut I am module api
  console.log('logicData', this.logicData) --> bonjours I am module Logic
}

奖励积分

如果要在模块之间进行通信,例如在app-logic中执行的操作会触发api-logic中的操作。 因此,将app-logic(模块1)改为api-logic(模块2)

当您指定root: true时,它将开始查看商店的根。

store/app-logic/actions.js

  callPokemonFromAppLogic: ({ dispatch }, id) => {
    dispatch('callThePokemonFromApiLogic', id, {root:true});
  },

store/api-logic/actions.js

  callThePokemonFromApiLogic: ({ commit }, id) => {

    console.log('I make the call here')
    axios.get('http://pokeapi.salestock.net/api/v2/pokemon/' + id).then(response => commit('update_pokemon', response.data))
  },

store/api-logic/index.js中添加另一个条目

import actions from './actions';
import getters from './getters';
import mutations from './mutations';

const defaultState = {
  appLogicData: 'bonjours I am module Logic',
  pokemon: {}
}

const inBrowser = typeof window !== 'undefined';
// if in browser, use pre-fetched state injected by SSR
const state = (inBrowser && window.__INITIAL_STATE__) ? window.__INITIAL_STATE__.page : defaultState;

export default {
  state,
  actions,
  mutations,
  getters
}

store/api-logic/mutations.js中添加神奇宝贝突变:p

  update_pokemon: (state, pokemon) => {
    state.pokemon = pokemon
  }

应用程序中的任何地方:

computed: {
  ...mapGetters({
    bidule: 'bidule',
    pokemon: 'getPokemon'
  })
},
mounted() {
  console.log('bidule', this.bidule)
  this.callPokemonFromAppLogic('1') --> the call 
  console.log('the pokemon', this.pokemon.name) --> 'bulbasaur'
},
methods: {
  ...mapActions({
    callPokemonFromAppLogic: 'callPokemonFromAppLogic'
  }),
}

最后,您的Vue devTool应该看起来像这样:) Vue devTool screenshot store

Voilà我希望这很清楚。 代码示例:

https://github.com/CMarzin/nuxt-vuex-modules

答案 2 :(得分:0)

您的问题

在文件中使用RANDOM.LINE.OF.CODE : MORE.CODE 导出以达到所需的效果(除了default中没有命名的导出)

示例

可以直接在Nuxt.js测试套件中找到一个示例(位于https://github.com/nuxt/nuxt.js/tree/dev/test/fixtures/basic/store/foo)。

如果您运行index.js固定装置并访问/ store页面,则会看到以下结果

enter image description here

模块本身中的“重复”内容仅表明拆分值具有优先级(否则basic不会返回10,而99和getVal不会是4,而是2)

store.vue代码:

state.val