家伙!
使用Angular ui bootstŕap
,我正在为用户制作时间戳。用户可以设置时间(24小时格式)。而且我试图在控制器中获得这个价值。
因此,当用户将13:00设置为时间时,我需要提取13:00:00但是,我得到的是2016-08-12T07:30:02.732Z
如何获取用户输入的值而不是UTC时间。
<div ng-controller="TimepickerDemoCtrl">
<div uib-timepicker ng-model="mytime" ng-change="changed()" hour-step="hstep" second-step="30" show-seconds="false" minute-step="mstep" show-meridian="false"></div>
<pre class="alert alert-info">Time is: {{mytime }}</pre>
<button type="button" class="btn btn-danger" ng-click="clear()">Clear</button>
</div>
我做了一个可以让你更好的想法。这里是link