角度格式输入值与模态的日期

时间:2014-10-16 02:09:37

标签: javascript jquery angularjs

我有一个输入接受日期时间选择器作为选项。现在选择正确显示的日期时。

当加载日期时,如果用户按下其中一个条目的编辑按钮,日期显示的格式不正确(不知道日期格式的名称):

Thu Oct 09 2014 05:06:00 GMT+1100 (AEDT)

我的代码是这样的,我的任务是格式化输入的日期,无论它是如何加载的。

<input type="text" class="form-control" datepicker-popup="{{'dd-MMMM-yyyy'}}" ng-model="{{startDate | date:'yyyy-MM-dd'}}" is-open="openedStart" datepicker-options="dateOptions" date-disabled="disabled(date, mode)" ng-required="true" close-text="Close" />

1 个答案:

答案 0 :(得分:0)

尝试这样的事情:

<input type="text" class="form-control" datepicker-popup="dd-MMMM-yyyy" ng-model="startDate" is-open="openedStart" datepicker-options="dateOptions" date-disabled="disabled(date, mode)" ng-required="true" close-text="Close" />