我喜欢使用ui.bootstrap.datepicker
指令,并将特定格式返回到ng-model。这个线程(DatePicker Have the Model come back as a specific format.)已经回答了这个问题。但是,我不明白return +viewValue;
在给定解决方案中的作用。有人可以告诉我这行代码是什么意思吗?谢谢。
Plunker here
app.directive('myformat', function() {
return {
require: 'ngModel',
link: function(scope, element, attrs, ngModel) {
ngModel.$parsers.push(function(viewValue) {
return +viewValue; //????????? what is this doing?
});
}
}
});