这是我的演示plnkr(http://embed.plnkr.co/SsdPPCQdAhdUldbeTK1E/)
我的示例应用程序有很多天,我有各种时间
我的日子$scope.day = ['Sunday', 'Monday'];
但是在ng-repeat中应用时间我无法在ui时间选择器中获取当前时间
没有ng-repeat我可以使用$scope.mytime = new Date();
如何使用ng-repeat
设置当前时间答案 0 :(得分:1)
试试这个
$scope.days = [{day:'mon day',time: new Date}, {day:'tues day',time: new Date}];
<div class="" ng-repeat="day in days">
<ul>
<li>{{day.day}}</li>
<input type="" name="" >
<div uib-timepicker ng-model="day.time" ng-change="changed()" hour-step="1" minute-step="5" show-meridian="true"></div>
</ul>
</div>