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标签时会发生这种情况?