Vue引用第三方datepicker外掛程式無法監聽datepicker輸入框的值的解決,vuedatepicker

來源:互聯網
上載者:User

Vue引用第三方datepicker外掛程式無法監聽datepicker輸入框的值的解決,vuedatepicker

一、背景

在Vue項目中使用了第三方的datepicker外掛程式,在選擇日期後vue無法檢測到datepicker輸入框的變化

 <label class="fl">日期:</label> <div class="input-wrapper fr">  <input class="daterangepicker" ref="datepicker" v-model="dateRange"/>  <a href="javascript:;" rel="external nofollow" ></a> </div>export default {  data() {    return {      dateRange: ''    }  },  watch: {    dateRange(newVal, oldVal) {      console.log(newVal) // 選擇日期後無法監聽dateRange的改變    }  }}

二、分析

尋找資料發現:Vue實際上無法監聽由第三方外掛程式所引起的資料變化。因此上面的方法是行不通的。但是,Vue給我們提供的一個方法,它可以將任意資料轉化為可以被Vue監聽到的資料,他就是:vm.$set。

三、解決

以我用到的datepicker為例(jquery-daterangepicker)

data() {    return {      date: '',      beginDate: '',      endDate: ''    }  },mounted () {  $('.daterangepicker').dateRangePicker({    autoClose: true,    format: 'YYYY-MM-DD'  }).bind('datepicker-change', this.setDate) //外掛程式內建方法,選擇日期後觸發回調 },methods: {  setDate() {    let datepicker = this.$refs.datepicker    //這一步是關鍵,具體說明可以參見vue api手冊    this.$set(this.date, 'beginDate', datepicker.value)    this.$set(this.date, 'endDate', datepicker.value)    this.beginDate = this.date.beginDate.slice(0, 11)    this.endDate = this.date.endDate.slice(-10)  }   },  watch: {  // 這裡就可以監聽資料變化啦,可以愉快的選擇日期了!   beginDate(newVal, oldVal) {     this.$emit( 'beginDateChange', newVal )   },   endDate(newVal, oldVal) {     this.$emit( 'endDateChange', newVal )   }  }

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.