将ng-model添加到ui-date中断datepicker

时间:2013-09-16 09:48:24

标签: angularjs datepicker angular-ui

HTML

<input ui-date ng-model="tDate">

控制器

$scope.tDate = new Date();
$scope.$watch('tDate', function () {
                console.log($scope.tDate);
            }, true);

通过添加ng-model标记,dateppicker显示在pageload上,通常不应该这样。有人为什么在添加ng-model标签时会发生这种情况?

0 个答案:

没有答案