使用ng-model-options或date是否可以將時區設置爲自動調整爲夏令時(即根據該值在PST和PDT之間切換)?PDT/PST中的AngularJS顯示時間
例如:
<input type="date" ng-model="order.scheduled" ng-model-options="{ timezone: 'PST' }" />
<input type="time" ng-model="order.scheduled" ng-model-options="{ timezone: 'PST' }" />
只有當時間落入標準時間(不是夏令時)的作品。
對於日期和時間,我強烈建議看[MomentJS]工作(http://momentjs.com/)及其同伴[角時刻(HTTPS ://github.com/urish/angular-moment)。 MomentJS具有isDST()方法以及各種UTC和時區功能。 – Lex
@Lex我可以使用MomentJS來顯示日期 - 但輸入怎麼樣? –
對不起,我可能很厚,但你在問什麼?如何向用戶提供選擇日期和時間的輸入?根據您使用的UI框架,可以使用各種日期/時間選擇器控件。 – Lex