html
<input ui-date ng-model="tDate">
控制器
$scope.tDate = new Date();
$scope.$watch('tDate', function () {
console.log($scope.tDate);
}, true);
通过添加 ng-model 标记,日期选择器会显示在通常不应该的页面加载中。任何人都知道为什么在添加 ng-model 标签时会发生这种情况?