选择下拉列表中的Dateformat AngularJS

时间:2014-11-13 14:46:07

标签: javascript html angularjs datetime formatting

我从Web API收到一些json数据。这个json数据由一系列日期时间组成。

我希望能够从下拉列表中选择特定的日期时间。填充列表没有问题,但格式不正确,我不知道如何正确。

之后将使用选定的日期时间。

我使用Angular并且不介意使用其他第三方工具,例如moment.js

目前它看起来像这样:

enter image description here

编辑:我按以下方式填充下拉列表:

<select class="inputIndkald" id="tidspunktDropdown" ng-model="indkald.tidspunkt" ng-options="tidspunkt.dateTime for tidspunkt in indkaldTidspunkt"><option value="">Vælg...</option></select>

我希望你们能帮助我。

1 个答案:

答案 0 :(得分:5)

[......老答案不相关......]

更新:

我自己从未这样做,但你尝过类似的事情:

<select 
    class="inputIndkald" 
    id="tidspunktDropdown" 
    ng-model="indkald.tidspunkt" 
    ng-options="tidspunkt.dateTime as tidspunkt|date:'HH:mm:ss dd.MM.yyyy' for tidspunkt in indkaldTidspunkt ">

    <option value="">Vælg...</option>
</select>