欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Vue中組件的傳值方式詳解

 更新時(shí)間:2023年08月17日 10:04:05   作者:飄飄~  
這篇文章主要介紹了Vue中組件的傳值方式詳解,Vue中最常見的組件之間的通信方式有12種,今天我們會(huì)詳細(xì)講解父?jìng)髯觩rops方式和子傳父emit以及非父子組件傳值,需要的朋友可以參考下

前言

Vue中最常見的組件之間的通信方式有12種,分別為:props、$emit、sync、v-model、ref、$children / $parent、$attrs / $listeners、provide / inject、EventBus、 Vuex、 $root、 slot。

今天我們會(huì)詳細(xì)講解父?jìng)髯觩rops方式和子傳父¥emit以及非父子組件傳值。

一、父?jìng)髯?/h2>

props聲明:

父?jìng)髯拥膶?shí)現(xiàn)方式就是通過(guò)props屬性,子組件通過(guò)props屬性接收從父組件傳過(guò)來(lái)的值,而父組件傳值的時(shí)候使用 v-bind 將子組件中預(yù)留的變量名綁定為data里面的數(shù)據(jù)即可

定義方式:

字符串:

export default {
  props: ['foo'],
  created() {
    // props 會(huì)暴露到 `this` 上
    console.log(this.foo)
  }
}

對(duì)象方式:

export default {
  props: {
    title: String,
    likes: Number
  }
}

舉例:

父組件:

<template>
  <div id="app">
    <!--App props 配置方式    -->
    <student id="002" name="李四" sex="男" age="18"></student>
    <student id="003" name="王五" sex="女"></student>
  </div>
</template>
<script>
import student from "@/components/Student";
export default {
  name: 'App',
  components: {
    student
  }
}
</script>

子組件:

<template>
  <div>
    <h2 >學(xué)生ID:{{ id }}</h2>
    <h2>學(xué)生姓名:{{ name }}</h2>
    <h2>學(xué)生性別:{{ sex }}</h2>
    <h2>學(xué)生年齡:{{ age }}</h2>
  </div>
</template>
<script>
export default {
  // eslint-disable-next-line vue/multi-word-component-names
  name: "student",
  data() {
    return {}
  }, 
  // 聲明  接收app傳遞過(guò)來(lái)的數(shù)據(jù)
  props:['id','name','sex','age']
  /*methods:{
    up(){
      this.$props.name = '阿薩德';
    }
  },*/
  // 接收數(shù)據(jù)的時(shí)候限制數(shù)據(jù)的類型
  // props: {
  //   id: String,
  //   name: String,
  //   sex: String,
  //   age: Number
  // }
  // props:{
  //     id: {
  //       type:String,
  //       required:true
  //     },
  //     name: {
  //       type:String,
  //       required:true
  //     },
  //     sex: {
  //       type:String,
  //       required:true
  //     },
  //     age: {
  //       type:String,  // 類型
  //       default:'18', // 默認(rèn)值
  //       required:false, // 必要的  true  false
  //       validator: function (value) { //驗(yàn)證數(shù)據(jù)
  //         return value >= 1;
  //       }
  //     }
  //
  // }
}
</script>
<style scoped>
</style>

效果圖:

原理:所有的 props 都遵循著單向綁定原則,props 因父組件的更新而變化,自然地將新的狀態(tài)向下流往子組件,而不會(huì)逆向傳遞。

這避免了子組件意外修改父組件的狀態(tài)的情況,不然應(yīng)用的數(shù)據(jù)流將很容易變得混亂而難以理解。

另外,每次父組件更新后,所有的子組件中的 props 都會(huì)被更新到最新值。(子組件中不能更待props值,會(huì)出現(xiàn)報(bào)錯(cuò)!)

二、子傳父

父組件:

<template>
  <div>
    <!--  通過(guò)父組件 給子組件綁定一個(gè)自定事件 實(shí)現(xiàn)子組件給父組件 -->
    <!-- ****** 傳遞數(shù)據(jù) -->
    <Student @zhangsan="getStudentName"></Student>
    <hr/>
    <Student ref="student"></Student>
  </div>
</template>
<script>
import Student from "@/components/Student";
export default {
  name: 'App',
  data() {
    return {}
  }, components: {
    Student
  }, methods: {
    getStudentName(name) {
      console.log("獲取到了學(xué)生的的信息" + name)
    }
  },mounted() {
    /*  $on(eventName) 監(jiān)聽事件 */
    /* Vue 為每個(gè)窗口 都提供了一個(gè) 事件接口  Events interface */
    this.$refs.student.$on('zhangsan',this.getStudentName)
  }
}
</script>

子組件:

<template>
  <div>
    <h2>學(xué)生姓名:{{ name }} </h2>
    <h2>學(xué)生性別:{{ sex }} </h2>
    <button @click="sendStudentName">點(diǎn)我傳遞學(xué)生信息</button>
  </div>
</template>
<script>
export default {
  // eslint-disable-next-line vue/multi-word-component-names
  name: "Student",
  data() {
    return {
      name: '張三',
      sex: '男'
    }
  },methods:{
    sendStudentName(){
      //  $emit 觸發(fā)事件   >>> $emit(eventName)
      this.$emit('zhangsan',this.name);
      // this.$emit('zhangsan',this.name,.,.,.,.,.,.);
    }
  }
}
</script>
<style scoped>
</style>

效果圖:

三、非父子組件

兄弟組件之間的數(shù)據(jù)傳遞,通過(guò) eventBus 來(lái)做中間的橋梁,傳輸方通過(guò) Bus.$emit('自定義事件名', 數(shù)據(jù))傳數(shù)據(jù),接收方通過(guò) Bus.$on('自定義事件名', callback)接收數(shù)據(jù),兩者之間的自定義屬性名保持一致

傳值思想其實(shí)是一致的,先使用$on定義一個(gè)全局事件,后面寫個(gè)回調(diào)函數(shù),觸發(fā)這個(gè)事件執(zhí)行的方法,可以接參數(shù)bus.$on('msg',val=>{ }),msg就是全局事件,然后在想要獲取這個(gè)全局事件里面的值就調(diào)用他,不過(guò)這時(shí)候不是 this.emit 而是 bus . emit 而是 bus.emit而是bus.emit

A組件:

<template>
  <div>
    A組件:
    <span>{{elementValue}}</span>
    <input type="button" value="點(diǎn)擊觸發(fā)" @click="elementByValue">
  </div>
</template>
<script>
  // 引入公共的bug,來(lái)做為中間傳達(dá)的工具
  import Bus from './bus.js'
  export default {
    data () {
      return {
        elementValue: 4
      }
    },
    methods: {
      elementByValue: function () {
        Bus.$emit('val', this.elementValue)
      }
    }
  }
</script>

B組件:

<template>
  <div>
    B組件:
    <input type="button" value="點(diǎn)擊觸發(fā)" @click="getData">
    <span>{{name}}</span>
  </div>
</template>
<script>
  import Bus from './bus.js'
  export default {
    data () {
      return {
        name: 0
      }
    },
    mounted: function () {
      var vm = this
      // 用$on事件來(lái)接收參數(shù)
      Bus.$on('val', (data) => {
        console.log(data)
        vm.name = data
      })
    },
    methods: {
      getData: function () {
        this.name++
      }
    }
  }
</script>

四、其他傳值方式

組件中可以使用 $parent和 $children獲取到父組件實(shí)例和子組件實(shí)例,進(jìn)而獲取數(shù)據(jù)$parent 當(dāng)前組件樹的根 Vue 實(shí)例。

如果當(dāng)前實(shí)例沒有父實(shí)例,此實(shí)例將會(huì)是其自己。

$children 當(dāng)前實(shí)例的直接子組件。

需要注意 $children 并不保證順序,也不是響應(yīng)式的。如果你發(fā)現(xiàn)自己正在嘗試使用 $children 來(lái)進(jìn)行數(shù)據(jù)綁定,考慮使用一個(gè)數(shù)組配合 v-for 來(lái)生成子組件,并且使用 Array 作為真正的來(lái)源。

總結(jié):

父組件通過(guò) prop 給子組件下發(fā)數(shù)據(jù),子組件通過(guò)事件給父組件發(fā)送消息

最后的最后賦一張借鑒來(lái)的圖供大家快速記憶:

到此這篇關(guān)于Vue中組件的傳值方式詳解的文章就介紹到這了,更多相關(guān)Vue組件傳值內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • Vue3項(xiàng)目實(shí)現(xiàn)前端導(dǎo)出Excel的示例代碼

    Vue3項(xiàng)目實(shí)現(xiàn)前端導(dǎo)出Excel的示例代碼

    這篇文章主要介紹了Vue3項(xiàng)目實(shí)現(xiàn)前端導(dǎo)出Excel的示例,在vue3的項(xiàng)目中導(dǎo)出Excel表格的功能,可以借助xlsx庫(kù)來(lái)實(shí)現(xiàn),下面是詳細(xì)的操作步驟,需要的朋友可以參考下
    2025-01-01
  • Element-plus使用中遇到的問題小結(jié)

    Element-plus使用中遇到的問題小結(jié)

    表格數(shù)據(jù)是websocket通信獲取的數(shù)據(jù),首次獲取20條數(shù)據(jù),以后新增訂閱獲取一條,新增一條則向上滑動(dòng)顯示最新數(shù)據(jù),本文給大家介紹Element-plus使用中遇到的問題小結(jié),感興趣的朋友跟隨小編一起看看吧
    2024-04-04
  • Vue3+vueuse實(shí)現(xiàn)放大鏡示例詳解

    Vue3+vueuse實(shí)現(xiàn)放大鏡示例詳解

    這篇文章主要為大家介紹了Vue3+vueuse實(shí)現(xiàn)放大鏡示例過(guò)程詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-07-07
  • Vue中$emit調(diào)用父組件異步方法模擬.then實(shí)現(xiàn)方式

    Vue中$emit調(diào)用父組件異步方法模擬.then實(shí)現(xiàn)方式

    這篇文章主要介紹了Vue中$emit調(diào)用父組件異步方法模擬.then實(shí)現(xiàn)方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-09-09
  • 如何理解Vue前后端數(shù)據(jù)交互與顯示

    如何理解Vue前后端數(shù)據(jù)交互與顯示

    這篇文章主要介紹了如何理解Vue前后端數(shù)據(jù)交互與顯示,對(duì)Vue感興趣的同學(xué),可以參考下
    2021-05-05
  • vue動(dòng)態(tài)綁定圖標(biāo)的完整步驟

    vue動(dòng)態(tài)綁定圖標(biāo)的完整步驟

    動(dòng)態(tài)綁定是我們?nèi)粘i_發(fā)中經(jīng)常遇到的一個(gè)需求,下面這篇文章主要給大家介紹了關(guān)于vue動(dòng)態(tài)綁定圖標(biāo)的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2021-05-05
  • Vue中的局部組件介紹

    Vue中的局部組件介紹

    這篇文章主要介紹了Vue中的局部組件,文章圍繞Vue局部組件得相關(guān)資料展開內(nèi)容,需要的的小孩伙伴請(qǐng)參考下面文章的具體介紹,希望對(duì)你有所幫助
    2021-12-12
  • vue.js實(shí)現(xiàn)刷新當(dāng)前頁(yè)面的方法教程

    vue.js實(shí)現(xiàn)刷新當(dāng)前頁(yè)面的方法教程

    這篇文章主要給大家介紹了關(guān)于vue.js實(shí)現(xiàn)刷新當(dāng)前頁(yè)面的方法教程,文中給出了詳細(xì)的示例代碼供大家參考學(xué)習(xí),對(duì)大家具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面跟著小編一起來(lái)學(xué)習(xí)學(xué)習(xí)吧。
    2017-07-07
  • Vue-less的使用和deep深度選擇器詳解

    Vue-less的使用和deep深度選擇器詳解

    這篇文章主要介紹了Vue-less的使用和deep深度選擇器,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-10-10
  • vue中的插槽詳解

    vue中的插槽詳解

    這篇文章主要介紹了Vue中的插槽,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2021-10-10

最新評(píng)論