以下AngularJS指令中的viewValue是什么?

时间:2015-01-12 04:45:16

标签: javascript angularjs angular-ui-bootstrap

我喜欢使用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?
            });
        }
    }
});

0 个答案:

没有答案