您好,登錄后才能下訂單哦!
這篇“Vue引用datepicker插件無法監(jiān)聽輸入框的值怎么解決”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Vue引用datepicker插件無法監(jiān)聽輸入框的值怎么解決”文章吧。
一、背景
在Vue項(xiàng)目中使用了第三方的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) // 選擇日期后無法監(jiān)聽dateRange的改變 } } }
二、分析
查找資料發(fā)現(xiàn):Vue實(shí)際上無法監(jiān)聽由第三方插件所引起的數(shù)據(jù)變化。因此上面的方法是行不通的。但是,Vue給我們提供的一個(gè)方法,它可以將任意數(shù)據(jù)轉(zhuǎn)化為可以被Vue監(jiān)聽到的數(shù)據(jù),他就是:vm.$set。
三、解決
以我用到的datepicker為例(jquery-daterangepicker)
data() { return { date: '', beginDate: '', endDate: '' } }, mounted () { $('.daterangepicker').dateRangePicker({ autoClose: true, format: 'YYYY-MM-DD' }).bind('datepicker-change', this.setDate) //插件自帶方法,選擇日期后觸發(fā)回調(diào) }, methods: { setDate() { let datepicker = this.$refs.datepicker //這一步是關(guān)鍵,具體說明可以參見vue api手冊(cè) 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: { // 這里就可以監(jiān)聽數(shù)據(jù)變化啦,可以愉快的選擇日期了! beginDate(newVal, oldVal) { this.$emit( 'beginDateChange', newVal ) }, endDate(newVal, oldVal) { this.$emit( 'endDateChange', newVal ) } }
以上就是關(guān)于“Vue引用datepicker插件無法監(jiān)聽輸入框的值怎么解決”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。