91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue子組件向父組件通信與父組件調用子組件中的方法

發布時間:2020-10-24 01:51:14 來源:腳本之家 閱讀:209 作者:ybs5431 欄目:web開發

子組件向父組件通信

子組件的button按鈕綁定點擊事件,事件方法名為sendToParent(),

該方法在子組件的methods中聲明,實現功能this.$emit('cus-event',this.msg);

在父組件引入子組件,并給cus-event事件綁定doAction($event)方法,該方法中this.msg = e;console.log(e),

而msg已經在data中聲明,其值為”子級消息”,故最終的輸出結果為: 展示父級接收到的消息:子級消息

父組件調用子組件中的方法

點擊父組件的button按鈕,觸發了click事件指向的useChild方法[該方法的行為是輸出”父級消息”],

useChild方法在父組件的中的methods中聲明,調用子組件中的方法,并傳入參數str,即this.$refs.child1.getMsg(str);

而getMsg方法已經在子組件的methods中聲明,其行為是console.log('子級組件收到父級的內容',str);,

所以,最終的輸出結果為: 子級組件收到父級的內容 父級消息

代碼示例(結合上面的分析理解代碼)

<!DOCTYPE html> 
<html lang="en"> 
<head> 
  <meta charset="UTF-8"> 
  <title>子向父通信</title> 
  <style> 
    #app { 
      border: 1px solid blue; 
      width: 500px; 
      padding: 20px; 
      margin: auto; 
      border-radius: 8px; 
      background: fuchsia; 
    } 
    #wrapper { 
      border: 1px solid red; 
      width: 400px; 
      padding: 20px; 
      border-radius: 8px; 
      background: yellowgreen; 
      margin-top: 20px; 
    } 
  </style> 
  <script src="https://cdn.jsdelivr.net/npm/vue"></script> 
</head> 
<body> 
  <div id="app"> 
    <!-- 父組件 --> 
    <h2>這是父組件</h2> 
    <p>展示父級接收到的消息:{{msg}}</p> 
    <button @click="useChild(szStr)">調用子組件的方法</button> 
     <!-- cus-event為子組件自定義的事件名; doAction($event)為父組件的事件,參數$event不可少也不可寫成其他--> 
    <!-- ref表示組件的別名 --> 
    <child @cus-event="doAction($event)" ref="child1"></child> 
  </div> 
</body> 
</html> 
<template id="child"> 
  <div id="wrapper"> 
    <!-- 子組件 --> 
    <h3>這是子組件</h3> 
    <button @click="sendToParent">向父組件發消息</button> 
  </div> 
</template> 
<script> 
  let child = { 
    template: '#child', 
    data() { 
      return { 
        msg: '子級消息' 
      }; 
    }, 
    methods: { 
      sendToParent() { 
        // 子組件只管發送消息,其中cus-event為自定義事件名(事件名不能寫成駝峰法,多個單詞用-連接),this.msg為要傳遞的參數。 
        this.$emit('cus-event', this.msg); 
      }, 
      getMsg(str) { 
        console.log('子級組件收到父級的內容', str); 
      } 
    } 
  }; 
  // 注意: .$mount('#app')跟實例內部el: '#app'是等價的 
  new Vue({ 
    data: { 
      msg: '', 
      szStr:'父級消息' 
    }, 
    components: { 
      child 
    }, 
    methods: { 
      doAction(e) { 
        console.log(this); 
        console.log(e); 
        this.msg = e; 
      }, 
      useChild(str) { 
        // 調用子組件的方法 
        // console.log(this); 
        // console.log(this.$refs); 
        // this.$refs.child1得到的子組件實例 
        this.$refs.child1.getMsg(str); 
      } 
    } 
  }).$mount('#app'); 
</script> 

效果圖

Vue子組件向父組件通信與父組件調用子組件中的方法

總結

以上所述是小編給大家介紹的Vue子組件向父組件通信與父組件調用子組件中的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

化隆| 聂拉木县| 台东市| 潼关县| 周至县| 南江县| 静安区| 灵石县| 攀枝花市| 宜丰县| 阳高县| 新竹市| 万山特区| 抚顺市| 东兰县| 买车| 乐都县| 洛阳市| 河津市| 武宣县| 桐柏县| 长沙市| 边坝县| 盖州市| 永济市| 香河县| 寻甸| 临潭县| 报价| 万源市| 五华县| 梁河县| 南宁市| 临江市| 克山县| 刚察县| 威海市| 内丘县| 斗六市| 永定县| 黄陵县|