1. 程式人生 > >[轉載]Vue通訊、傳值的多種方式(詳細)

[轉載]Vue通訊、傳值的多種方式(詳細)

Vue通訊、傳值的多種方式,詳解(都是乾貨):

一、通過路由帶引數進行傳值

①兩個元件 A和B,A元件通過query把orderId傳遞給B元件(觸發事件可以是點選事件、鉤子函式等)

this.$router.push({ path: '/conponentsB', query: { orderId: 123 } }) // 跳轉到B

②在B元件中獲取A元件傳遞過來的引數

this.$route.query.orderId

二、通過設定 Session Storage快取的形式進行傳遞

①兩個元件A和B,在A元件中設定快取orderData

  1. const orderData = { 'orderId'
    : 123, 'price': 88 }
  2. sessionStorage.setItem('快取名稱', JSON.stringify(orderData))

②B元件就可以獲取在A中設定的快取了

const dataB = JSON.parse(sessionStorage.getItem('快取名稱'))

此時 dataB 就是資料 orderData

朋友們可以百度下 Session Storage(程式退出銷燬) 和 Local Storage(長期儲存) 的區別。

三、父子元件之間的傳值

(一)父元件往子元件傳值props

①定義父元件,父元件傳遞 number這個數值給子元件,如果傳遞的引數很多,推薦使用json陣列{}的形式

②定義子元件,子元件通過 props方法獲取父元件傳遞過來的值。props中可以定義能接收的資料型別,如果不符合會報錯。

③假如接收的引數 是動態的,比如 input輸入的內容 v-model的形式

注意:傳遞的引數名稱不識別駝峰命名,推薦使用橫槓-命名

④父子元件傳值,資料是非同步請求,有可能資料渲染時報錯

原因:非同步請求時,資料還沒有獲取到但是此時已經渲染節點了

解決方案:可以在 父元件需要傳遞資料的節點加上  v-if = false,非同步請求獲取資料後,v-if = true

(二)、子元件往父元件傳值,通過emit事件

四、不同元件之間傳值,通過eventBus(小專案少頁面用eventBus,大專案多頁面使用 vuex)

①定義一個新的vue例項專門用於傳遞資料,並匯出

②定義傳遞的方法名和傳輸內容,點選事件或鉤子函式觸發eventBus.emit事件

③接收傳遞過來的資料

注意:enentBus是一個另一個新的Vue例項,區分兩個this所代表得vue例項

五、vuex進行傳值

為什麼使用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. .title,.titleName{
  38. color: red;
  39. font-size: 20px;
  40. }
  41. .btn{
  42. width: 160px;
  43. height: 40px;
  44. background-color: red;
  45. border: none;
  46. outline: none;
  47. color: #ffffff;
  48. border-radius: 4px;
  49. }
  50. .marTop{
  51. margin-top: 20px;
  52. }
  53. </style>

最後:本文完全手打,如需轉載請註明出處,謝謝,如果不明白的地方歡迎給我留言哦。

github專案倉庫地址:https://github.com/byla678/vuexdemo.git