最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Detecting changes to an input value - vue2 - Stack Overflow

programmeradmin2浏览0评论

I am using a date time picker ponent for vue2. While it renders nicely and seem to function well with basic usage, I am not able to detect changes to the input value within the vue ponent. I tried adding @change to the ponent instance, although it never seems to fire. Any idea why this is? Note, v-model updates the value of cool successfully.

Vue Methods

 export default {
        ...           
        methods: {
          someEvent() {
            alert("SUCCESS"); //this never fires
          }

Vue Markup

                       <date-picker
                                v-model="cool"
                                lang="en"
                                type="datetime"
                                input-class="date-time-picker"
                                format="MM/DD/YYYY hh:mm A"
                                @change="someEvent()"
                                :confirm="true"
                        >
                        </date-picker>

JsFiddle: /

I am using a date time picker ponent for vue2. While it renders nicely and seem to function well with basic usage, I am not able to detect changes to the input value within the vue ponent. I tried adding @change to the ponent instance, although it never seems to fire. Any idea why this is? Note, v-model updates the value of cool successfully.

Vue Methods

 export default {
        ...           
        methods: {
          someEvent() {
            alert("SUCCESS"); //this never fires
          }

Vue Markup

                       <date-picker
                                v-model="cool"
                                lang="en"
                                type="datetime"
                                input-class="date-time-picker"
                                format="MM/DD/YYYY hh:mm A"
                                @change="someEvent()"
                                :confirm="true"
                        >
                        </date-picker>

JsFiddle: https://jsfiddle/aw5g3q9x/

Share Improve this question edited Jan 3, 2018 at 17:31 AnchovyLegend asked Jan 3, 2018 at 17:21 AnchovyLegendAnchovyLegend 12.6k41 gold badges152 silver badges240 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

When you add an event listener to a ponent tag (such as @change="someEvent()"), Vue will listen for a custom event to be emitted from the ponent. The <date-picker> ponent never emits a custom change event. Looking at the documentation, it appears that it only ever emits a confirm event when the optional "OK" button is pressed.

Your best option is to set a watcher on the cool property to fire the someEvent method whenever the value of cool changes:

watch: {
  cool() {
    this.someEvent();
  }
}

For future reference, if the root element of the ponent was an input, you could use the .native modifier to listen for the change DOM event of that input element like so @change.native="someEvent()". However, the root element of the <date-picker> ponent is a div, so that wouldn't work in this case.

I do not know the datepicker, but in your case you can use variable change watcher

Vue.use(window.DatePicker.default)

new Vue({
  el: '#app',
  data () {
  	return {
    	value: ''
    }
  },
  watch: {
      value() {
      		alert("OK");
      }
 }
})
<script src="//unpkg./vue/dist/vue.js"></script>
<script src="//rawgit./mengxiong10/vue2-datepicker/master/dist/build.js"></script>
<div id="app">
  <date-picker v-model="value" lang="en" type="datetime" format="yyyy-MM-dd hh:mm:ss a" :time-picker-options="{
                                     start: '00:00',
                                     step: '00:30',
                                     end: '23:30'
                                     }"></date-picker>
                                     
                                     {{ value }}
</div>

I have seen the package you are using for date time picker and I doubt they support @change event. Are you sure they do?

As a work around however, You can use puted properties or watchers to watch for changes in the value variable. Here is the updated fiddle https://jsfiddle/aw5g3q9x/2/

发布评论

评论列表(0)

  1. 暂无评论