问题
I am attempting to create a Vue 2 component using Bootstrap Datepicker but am getting stuck trying to update the input after a date is selected, here is my code:
Vue.component('datepicker', {
template: '\
<input class="form-control datepicker"\
ref="input"\
v-bind:value="value"\
v-on:input="updateValue($event.target.value)"\
v-on:blur="updateValue($event.target.value)"\
v-on:focus="updateValue($event.target.value)"\
data-date-format="dd-mm-yyyy"\
data-date-end-date="0d"\
placeholder="dd-mm-yyyy"\
type="text" />\
',
props: {
value: {
type: String,
default: moment().format('DD-MM-YYYY')
}
},
mounted: function () {
},
methods: {
updateValue: function (value) {
this.$emit('input', value);
},
}
});
The value updates fine if inputted via a keyboard but not when selected in the calendar. Any ideas how I can get the value updated on date changes via the calendar?
** Update **
I have gotten the following code working:
mounted: function() {
let self = this;
this.$nextTick(function() {
$('.datepicker').datepicker({
startView: 1,
todayHighlight: true,
todayBtn: "linked",
autoclose: true,
format: "dd-mm-yyyy"
})
.on('changeDate', function(e) {
var date = e.format('dd-mm-yyyy');
self.updateValue(date);
});
});
}
But it now updates the value of all the instances of Datepicker on the page. How can I set it up so it only updates for the selected Datepicker?
回答1:
Here is the final working component:
Vue.component('datepicker', {
template: '\
<input class="form-control datepicker"\
ref="input"\
v-bind:value="value"\
v-on:input="updateValue($event.target.value)"\
data-date-format="dd-mm-yyyy"\
data-date-end-date="0d"\
placeholder="dd-mm-yyyy"\
type="text" />\
',
props: {
value: {
type: String,
default: moment().format('DD-MM-YYYY')
}
},
mounted: function() {
let self = this;
this.$nextTick(function() {
$(this.$el).datepicker({
startView: 1,
todayHighlight: true,
todayBtn: "linked",
autoclose: true,
format: "dd-mm-yyyy"
})
.on('changeDate', function(e) {
var date = e.format('dd-mm-yyyy');
self.updateValue(date);
});
});
},
methods: {
updateValue: function (value) {
this.$emit('input', value);
},
}
});
回答2:
When you initialize the Datepicker, you can specify in the options what method should be called when the item is selected:
mounted: function() {
let self = this;
let args = {
format: 'DD-MM-YYYY',
placeholder: 'dd-mm-yyyy',
onSelect: function(dateText) {
self.updateValue(dateText);
}
};
this.$nextTick(function() {
$('.datepicker').datepicker(args)
});
}
回答3:
This way you dont get override by selected date and you dont lose text that you write in
this.$nextTick(function() {
$(this.$el).datepicker(args).on('changeDate', function(e:any) {
var date = e.format(format);
var sval:string = e.currentTarget.__vue__.$refs.input._value;
//console.log(sval);
//so that value doesnt get erased everytime i put one character there, wait to have more
if(sval.length>2){
self.updateValue(date); console.log('upate'+date+sval);
}
}).on('hide', function(e:any) {
var date = e.format(format);
var sval:string = e.currentTarget.__vue__.$refs.input._value;
self.updateValue(date); console.log('upate2'+date+sval);
});
});
来源:https://stackoverflow.com/questions/39990617/vue-2-datepicker-component