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

以v-model與promise兩種方式實現vue彈窗組件

 更新時間:2018年05月21日 08:36:48   作者:nodaysoff  
這篇文章主要介紹了vue彈窗組件之兩種方式v-model與promise,每種方式給大家介紹的非常詳細,具有一定的參考借鑒價值,需要的朋友可以參考下

最近公司有一個后臺業(yè)務雖然也是寫在了現有的后臺系統(tǒng)中,但是之后要為這個業(yè)務單獨拉出來新建一個后臺系統(tǒng),所以現有的后臺系統(tǒng)中的vue組件庫,就不能用了(因為不知道將來的系統(tǒng)要基于什么組件庫,以防給未來移植項目帶來麻煩),這次業(yè)務中又遇到了彈窗的功能,所以只能手動寫一個了(雖然說彈窗組件很簡單,也是想自己總結一下,有不對的地方也請指出),一開始用傳統(tǒng)的props,$emit但是覺得要接兩個取消與確認的回調這塊的邏輯分散了所以就用了promise兩個回調的方式把兩個回調寫在了一起,并不一定好,算是提供一種思路吧。

一.概覽

先看最后的調用方式

props $emit方式

<chat-modal ref="chat-modal" v-model="showModal" cancelText="取消" sureText="確認" title="彈窗標題" small @on-ok="onOK" @on-cancel="onCancel">
  <div>slot的東西,想向彈窗中添加自定義的內容</div>
</chat-modal>
methods: {
  display() {
   this.showModal = true;//交互點擊手動觸發(fā)顯示彈窗 
  },
  onOK() {},//點擊確認的回調
  onCancel() {}//點擊取消的回調
}

promise的回調方式

<chat-modal ref="chat-modal"></chat-modal>
methods: {
  display() {
    this.$refs["chat-modal"].openModal({
      title: "彈窗標題",
      sureText: "確認",
      cancelText: "取消"
    }).then(res => {
      //點擊確認的回調
    }, res => {
      //點擊取消的回調
    })
  }
}

第二種方式的好處就是把所有的邏輯都集中到了一個方法里。

二.看下組件的源碼

tip: 樣式有些爛...

<template>
  <div>
    <div class="shadow" v-show="showModal"></div>
    <div class="modal" :class="{'smSize': otherText.small || small}" v-show="showModal">
      <div class="header">{{ otherText.title || title}}</div>
      <div class="body">
        <slot></slot>
      </div>
      <div class="footer">
        <div class="item success" id="sure" ref="sure" @click="makeSure" v-show="otherText.sureText || sureText">{{ otherText.sureText || sureText }}</div>
        <div class="item red" id="cancel" ref="cancel" @click="makeCancel" v-show="otherText.cancelText || cancelText">{{ otherText.cancelText || cancelText }}</div>
      </div>
    </div>
  </div>
</template>
<script>
//此組件提供兩種調用方法,可以在組件上v-model一個表示是否顯示彈窗的對話框,然后需要的一些值通過props傳入,然后$emit在組件上@監(jiān)聽做回調
//第二中方法所有的傳值回調都只需要在組件內部的一個方法調用然后在組件外部this.$refs[xxx].open調用然后.then觸發(fā)回調,比上一種方便些
var initOtherText = {
  sureText: "",
  cancelText: "",
  title: "",
  small: false
};
export default {
  props: {
    title: {
      type: String
    },
    sureText: {
      type: String
    },
    cancelText: {
      type: String
    },
    value: {
      type: Boolean
    },
    small: {
      type: Boolean
    }
  },
  watch: {
    value(newVal) {
      this.showModal = newVal;
    }
  },
  data() {
    return {
      otherText: JSON.parse(JSON.stringify(initOtherText)),
      showModal: this.value
    };
  },
  methods: {
    makeSure() {
      this.$emit("on-ok");
      this.$emit("input", false);
    },
    makeCancel() {
      this.$emit("on-cancel");
      this.$emit("input", false);
    },
    openModal(otherText) {
      this.otherText = { ...otherText };
      this.showModal = true;
      var pms = new Promise((resolve, reject) => {
        this.$refs["sure"].addEventListener("click", () => {
          this.showModal = false;
          resolve("點擊了確定");
        });
        this.$refs["cancel"].addEventListener("click", () => {
          this.showModal = false;
          reject("點擊了取消");
        });
      });
      return pms;
    }
  }
};
</script>
<style lang="scss" scoped>
.shadow {
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 50;
}
.modal {
  display: table-cell;
  vertical-align: middle;
  overflow-x: hidden;
  position: fixed;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.33) 0px 2px 8px;
  border-radius: 5px;
  outline: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-top: -200px;
  margin-left: -300px;
}
.header {
  align-items: center;
  background-color: #62a39e;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-weight: bold;
  display: -ms-flexbox;
  display: flex;
  height: 3.5rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.body {
  align-items: center;
  padding: 1.5rem;
}
.footer {
  justify-content: flex-end;
  padding: 1.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  float: right;
}
.item {
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  display: inline-block;
}
.info {
  background-color: #2196f3;
}
.success {
  background-color: #62a39e;
}
.red {
  background-color: #e95358;
}

.smSize {
  height: 200px;
}
</style>

首先分析一下第一種方式: 調用者需要在組件外部v-model上綁定一個變量(例中為showModal)來指示彈窗是否顯示,顯示的時候需要在組件外部手動設置 this.showModal = true ,組件內部props定義一個屬性來接這個值為 value: {type: Boolean} ,同時在組件內部在用聲明一個變量用來同步外部傳進來的props值 默認值為 showModal: this.value (內部聲明的值也叫了showModal),在watch中監(jiān)聽進行同步 watch: { value(newVal) { this.showModal = newVal } } ;然后把組件內部的這個showModal值綁定在需要顯示或者隱藏的DOM元素上。向外拋出事件的時候是在點擊組件內部的確定與關閉按鈕時候

makeSure() {
      this.$emit("on-ok");
      this.$emit("input", false);
    },
makeCancel() {
      this.$emit("on-cancel");
      this.$emit("input", false);
    }

this.$emit("on-ok");this.$emit("on-cancel"); 這兩句的是向外拋出事件在組件外部@接一下然后寫自己需要的回調函數。這時就可以實現彈窗的顯示與隱藏了,你可能發(fā)現并沒有一句代碼去設置this.showModal = false;彈窗就隱藏了。主要是因為這幾句代碼 v-model = 'showModal' 和 組件內部的 props: {value: {type: Boolean}} this.$emit("input", false) 。v-model其實是vue的語法糖, <chat-modal v-model="showModal"> 其實可以寫為 <chat-modal :value="showModal" @input="showModal = arguments[0]"> 所以要求我們在組件內部必須規(guī)定props的名字必須為value, 然后在組件內部觸發(fā)確定或者取消的時候在組件內部觸發(fā) this.$emit("input", false) 這樣實現了直接隱藏彈窗而不必打擾用戶讓用戶在組件外部在手動將showModal置為false.

然后來看promise的方式: 第一種方式傳進來的值都通過props來接的,這種方式通過在組件內部定義了另一個對象來接傳進來的值,

var initOtherText = {
  sureText: "",
  cancelText: "",
  title: "",
  small: false
};
otherText: JSON.parse(JSON.stringify(initOtherText)),

然后在menthods里定義了一個名為openModal的方法,然后把傳進來的一系列參數賦值給組件內部的對象 this.otherText = { ...otherText }; this.showModal = true; 并且將showModal置為true,然后每次觸發(fā)的時候新建一個promise對象,里面的異步事件為點擊確定和取消的兩個點擊事件,這里要操作DOM了

this.$refs["sure"].addEventListener("click", () => {
  this.showModal = false;
  resolve("點擊了確定");
});

獲取確定按鈕的DOM元素綁定點擊事件,回調里將showModal置為false并且resolve,

this.$refs["cancel"].addEventListener("click", () => {
  this.showModal = false;
  reject("點擊了取消");
});

獲取取消按鈕的DOM綁定點擊事件,回調里reject.

遇到的坑

這之前遇到了一個坑,因為第一次已經綁定了點擊事件,第二次resolve和reject就會失敗,本想取消一下綁定事件,但是因為將整個彈窗v-show="showModal"的原因整個DOM被display:none;了就不需要手動解綁了。 第二個是關于用v-if還是v-show來隱藏彈窗,一開始用的是v-if但是發(fā)現在這步時

this.showModal = true;
var pms = new Promise((resolve, reject) => {
  this.$refs["sure"].addEventListener.xxx//省略
});
return pms;

將showModal置為true時然后就去綁定事件這時候還沒有DOM還沒有解析玩DOM樹上還沒有,要不就得用this.$nextTick增加了復雜度,最后采用了v-show;

關于優(yōu)先級問題

如果既在組件上用prop傳了值(title,sureText之類的)如 <chat-modal" title="xx" sureText="xxx"></chat-modal> 也在方法里傳了

this.$refs["chat-modal"].openModal({
  title: "服務小結",
  sureText: "提交并結束",
  cancelText: "取消"
  }).then();

是以方法的優(yōu)先級為高,在組件內部DOM元素上通過||設置了優(yōu)先級,比如 <div class="header popModal">{{ otherText.title || title}}</div> 有方法的值取方法的值,沒有取props得值。

總結

以上所述是小編給大家介紹的以v-model與promise兩種方式實現vue彈窗組件,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!

相關文章

  • 前端Vue設置cookie、刪除cookie,獲取cookie方式

    前端Vue設置cookie、刪除cookie,獲取cookie方式

    這篇文章主要介紹了前端Vue設置cookie、刪除cookie,獲取cookie方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-10-10
  • vue el-select與el-tree實現支持可搜索樹型

    vue el-select與el-tree實現支持可搜索樹型

    本文主要介紹了vue el-select與el-tree實現支持可搜索樹型,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2022-08-08
  • vue.js el-table動態(tài)單元格列合并方式

    vue.js el-table動態(tài)單元格列合并方式

    這篇文章主要介紹了vue.js el-table動態(tài)單元格列合并方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教
    2024-02-02
  • Vue中關于重新渲染組件的方法及總結

    Vue中關于重新渲染組件的方法及總結

    這篇文章主要介紹了Vue中關于重新渲染組件的方法及總結,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-12-12
  • vue3 ref獲取不到子組件的解決方法

    vue3 ref獲取不到子組件的解決方法

    在父組件內調用子組件內的事件從而改變子組件的某些狀態(tài),父子組件使用<script setup>語法糖,父組件通過給子組件定義ref訪問其內部事件,本文給大家介紹了vue3 ref獲取不到子組件的解決方法,需要的朋友可以參考下
    2024-06-06
  • Vue引用第三方datepicker插件無法監(jiān)聽datepicker輸入框的值的解決

    Vue引用第三方datepicker插件無法監(jiān)聽datepicker輸入框的值的解決

    這篇文章主要介紹了Vue引用第三方datepicker插件無法監(jiān)聽datepicker輸入框的值的解決,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-01-01
  • vue關于this.$refs.tabs.refreshs()刷新組件方式

    vue關于this.$refs.tabs.refreshs()刷新組件方式

    這篇文章主要介紹了vue關于this.$refs.tabs.refreshs()刷新組件方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-03-03
  • vue中window.onresize的使用解析

    vue中window.onresize的使用解析

    這篇文章主要介紹了vue中window.onresize的使用方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-04-04
  • vue腳手架vue-cli的學習使用教程

    vue腳手架vue-cli的學習使用教程

    本篇文章主要介紹了vue腳手架vue-cli的學習使用教程,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-06-06
  • vue常見的通信方式總結

    vue常見的通信方式總結

    我們日常項目開發(fā)中,少不了組件之間的通信,我們可能只知道一些常見的方式比如props,emits,其實,實現組件間的通信有很多種方式,本文就給大家總結一些我們常見的通信方式,需要的朋友可以參考下
    2023-08-08

最新評論