力矩选择器视图不会更改为12小时格式

时间:2018-03-23 02:28:37

标签: javascript angularjs momentjs

我无法将视图制作成12小时格式。我已经使用了angular-moment-picker库。

enter image description here

我想要的是将视图转换为12小时格式。

HTML

<div class="input-group" moment-picker="ctrl.timepicker" format="hh:mm a">
<span class="input-group-addon">
    <i class="far fa-clock"></i>
</span>
<input class="form-control" placeholder="Select a time" ng-model="ctrl.timepicker" ng-model-options="{ updateOn: 'blur' }">
</div>

配置

function momentPickerProvider(momentPickerProvider) {
  momentPickerProvider.options({
    minutesFormat: 'hh:mm'
  });
}

1 个答案:

答案 0 :(得分:1)

你试过这个吗?

app.config(['momentPickerProvider', function(momentPickerProvider){
  momentPickerProvider.options({
    hoursFormat: 'hh:mm'
  });
}])