如何绑定输入类型='date'与angularjs

How to bind input type='date' with angularjs

所以我正在尝试为日期类型的输入绑定值..

这是我的 AngularJS 代码,我试图将值绑定到:

$scope.date = new Date();
$scope.dateString = dateFilter($scope.date,'dd-MM-yyyy');

和html:

<input class="date" type="date" ng-bind="dateString">

我想做的是将默认值设置为今天的日期。然而,当我加载我的页面时,它只给我以下结果:

<input class="date ng-binding" type="date" ng-bind="dateString">08-04-2015</input>

我们非常欢迎任何帮助:)

谢谢, uksz

您需要使用 1.3 或更高版本才能获得日期支持。您还想使用 ng-model 而不是 ng-bind,因为 ng-bind 只是一种方式