标签: angularjs timepicker bootstrap-datetimepicker
我尝试使用angularjs中的uib-dropdown为timepicker创建下拉列表,但它不起作用。此外,在我的输入文本框中,我想显示09:00:00而不是Wed Mar 01 2017 09:00:00 GMT-0800 (Pacific Standard Time)。有什么帮助吗?
uib-dropdown
09:00:00
Wed Mar 01 2017 09:00:00 GMT-0800 (Pacific Standard Time)
plunker here
由于
答案 0 :(得分:1)
回答你问题的第二部分。使用filter进行日期格式设置。
添加以下代码:
$scope.mytime = $filter('date')(new Date("2017-03-01 09:00:00"), 'mediumTime');
我还为timePicker的模型添加了$ watch。在这里找到plunk。