1. 程式人生 > >vuex最詳細完整的使用用法 vuex最詳細完整的使用用法

vuex最詳細完整的使用用法 vuex最詳細完整的使用用法

vuex最詳細完整的使用用法

2018年03月01日 15:05:10 閱讀數:1228

為什麼使用vuex?

vuex主要是是做資料互動,父子元件傳值可以很容易辦到,但是兄弟元件間傳值(兄弟元件下又有父子元件),或者大型spa單頁面框架專案,頁面多並且一層巢狀一層的傳值,異常麻煩,用vuex來維護共有的狀態或資料會顯得得心應手。

需求:兩個元件A和B,vuex維護的公共資料是 餐館的名稱 resturantName,預設餐館名稱是 飛歌餐館,那麼現在A和B頁面顯示的就是飛歌餐館。如果A修改餐館名稱 為 A餐館,則B頁面顯示的將會是 A餐館,反之B修改同理。這就是vuex維護公共狀態或資料的魅力,在一個地方修改了資料,在這個專案的其他頁面都會變成這個資料。

         

①使用 vue-cli腳手架工具建立一個工程專案,工程目錄,建立元件A和元件B路由如下:

路由如下:


      
  1. import Vue from 'vue'
  2. import Router from 'vue-router'
  3. import componentsA from '@/components/componentsA'
  4. import componentsB from '@/components/componentsB'
  5. Vue.use(Router)
  6. export default new Router({
  7. mode: 'history',
  8. routes: [
  9. {
  10. path: '/',
  11. name: 'componentsA',
  12. component: componentsA
  13. },
  14. {
  15. path: '/componentsA',
  16. name: 'componentsA',
  17. component: componentsA
  18. },
  19. {
  20. path: '/componentsB',
  21. name: 'componentsB',
  22. component: componentsB
  23. }
  24. ]
  25. })

app.vue


      
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. #app {
  13. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. text-align: center;
  17. color: #2c3e50;
  18. margin-top: 60px;
  19. }
  20. </style>

②開始使用vuex,新建一個 sotre資料夾,分開維護 actions mutations getters


②在store/index.js檔案中新建vuex 的store例項

*as的意思是 匯入這個檔案裡面的所有內容,就不用一個個例項來匯入了。


      
  1. import Vue from 'vue'
  2. import Vuex from 'vuex'
  3. import * as getters from './getters' // 匯入響應的模組,*相當於引入了這個元件下所有匯出的事例
  4. import * as actions from './actions'
  5. import * as mutations from './mutations'
  6. Vue.use(Vuex)
  7. // 首先宣告一個需要全域性維護的狀態 state,比如 我這裡舉例的resturantName
  8. const state = {
  9. resturantName: '飛歌餐館' // 預設值
  10. // id: xxx 如果還有全域性狀態也可以在這裡新增
  11. // name:xxx
  12. }
  13. // 註冊上面引入的各大模組
  14. const store = new Vuex.Store({
  15. state, // 共同維護的一個狀態,state裡面可以是很多個全域性狀態
  16. getters, // 獲取資料並渲染
  17. actions, // 資料的非同步操作
  18. mutations // 處理資料的唯一途徑,state的改變或賦值只能在這裡
  19. })
  20. export default store // 匯出store並在 main.js中引用註冊。

③actions


      
  1. // 給action註冊事件處理函式。當這個函式被觸發時候,將狀態提交到mutations中處理
  2. export function modifyAName({commit}, name) { // commit 提交;name即為點選後傳遞過來的引數,此時是 'A餐館'
  3. return commit ('modifyAName', name)
  4. }
  5. export function modifyBName({commit}, name) {
  6. return commit ('modifyBName', name)
  7. }
  8. // ES6精簡寫法
  9. // export const modifyAName = ({commit},name) => commit('modifyAName', name)

④mutations


      
  1. // 提交 mutations是更改Vuex狀態的唯一合法方法
  2. export const modifyAName = (state, name) => { // A元件點選更改餐館名稱為 A餐館
  3. state.resturantName = name // 把方法傳遞過來的引數,賦值給state中的resturantName
  4. }
  5. export const modifyBName = (state, name) => { // B元件點選更改餐館名稱為 B餐館
  6. state.resturantName = name
  7. }

⑤getters


      
  1. // 獲取最終的狀態資訊
  2. export const resturantName = state => state.resturantName

⑥在main.js中匯入 store例項


      
  1. // The Vue build version to load with the `import` command
  2. // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
  3. import Vue from 'vue'
  4. import App from './App'
  5. import router from './router'
  6. import store from './store'
  7. Vue.config.productionTip = false
  8. /* eslint-disable no-new */
  9. new Vue({
  10. el: '#app',
  11. router,
  12. store, // 這樣就能全域性使用vuex了
  13. components: { App },
  14. template: ' <App/>'
  15. })

④在元件A中,定義點選事件,點選 修改 餐館的名稱,並把餐館的名稱在事件中用引數進行傳遞。

...mapactions 和 ...mapgetters都是vuex提供的語法糖,在底層已經封裝好了,拿來就能用,簡化了很多操作。

其中...mapActions(['clickAFn']) 相當於this.$store.dispatch('clickAFn',{引數}),mapActions中只需要指定方法名即可,引數省略。

...mapGetters(['resturantName'])相當於this.$store.getters.resturantName


      
  1. <template>
  2. <div class="componentsA">
  3. <P class="title">元件A </P>
  4. <P class="titleName">餐館名稱:{{resturantName}} </P>
  5. <div>
  6. <!-- 點選修改 為 A 餐館 -->
  7. <button class="btn" @click="modifyAName('A餐館')">修改為A餐館 </button>
  8. </div>
  9. <div class="marTop">
  10. <button class="btn" @click="trunToB">跳轉到B頁面 </button>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. import {mapActions, mapGetters} from 'vuex'
  16. export default {
  17. name: 'A',
  18. data () {
  19. return {
  20. }
  21. },
  22. methods:{
  23. ...mapActions( // 語法糖
  24. [ 'modifyAName'] // 相當於this.$store.dispatch('modifyName'),提交這個方法
  25. ),
  26. trunToB () {
  27. this.$router.push({ path: '/componentsB'}) // 路由跳轉到B
  28. }
  29. },
  30. computed: {
  31. ...mapGetters([ 'resturantName']) // 動態計算屬性,相當於this.$store.getters.resturantName
  32. }
  33. }
  34. </script>
  35. <!-- Add "scoped" attribute to limit CSS to this component only -->
  36. <style scoped>
  37. .title, .titleName{
  38. color: blue;
  39. font-size: 20px;
  40. }
  41. .btn{
  42. width: 160px;
  43. height: 40px;
  44. background-color: blue;
  45. border: none;
  46. outline: none;
  47. color: #ffffff;
  48. border-radius: 4px;
  49. }
  50. .marTop{
  51. margin-top: 20px;
  52. }
  53. </style>

    B元件同理


      
  1. <template>
  2. <div class="componentsB">
  3. <P class="title">元件B </P>
  4. <P class="titleName">餐館名稱:{{resturantName}} </P>
  5. <div>
  6. <!-- 點選修改 為 B 餐館 -->
  7. <button class="btn" @click="modifyBName('B餐館')">修改為B餐館 </button>
  8. </div>
  9. <div class="marTop">
  10. <button class="btn" @click="trunToA">跳轉到A頁面 </button>
  11. </div>
  12. </div>
  13. </template>
  14. <script>
  15. import {mapActions, mapGetters} from 'vuex'
  16. export default {
  17. name: 'B',
  18. data () {
  19. return {
  20. }
  21. },
  22. methods:{
  23. ...mapActions( // 語法糖
  24. [ 'modifyBName'] // 相當於this.$store.dispatch('modifyName'),提交這個方法
  25. ),
  26. trunToA () {
  27. this.$router.push({ path: '/componentsA'}) // 路由跳轉到A
  28. }
  29. },
  30. computed: {
  31. ...mapGetters([ 'resturantName']) // 動態計算屬性,相當於this.$store.getters.resturantName
  32. }
  33. }
  34. </script>
  35. <!-- Add "scoped" attribute to limit CSS to this component only -->
  36. <style scoped>
  37. <