クライアントが入力する標準時間形式( "HH:mm")の入力テキストの書式設定に問題があります。また、到着時間が出発時間よりも長くない場合は、私は検証しなければなりません。ここにいくつかのサンプルがあります:AngularJSを使用して時間をフォーマットする方法は?
<table>
<tr><td>Arrival: <input type="text" ng-model="item.arrival" name="arrival">{{item.arrival | date: 'HH:mm'}}</td> //It doesn't work. The code doesn't force the formatting upon typing(the ":") and also it allows more than 4 characters
<tr><td>Departure: <input type="text" ng-model="item.departure" name="departure">{{item.departure | date: 'HH:mm'}}</td></tr> //I must check if the value defined in arrival isn't greater than departure time.
</table>
誰かがこれを扱ういくつかのコードを表示できますか?私はバックエンドの開発者の多くですが、私はいくつかのgoogledしかし、多くを見つけることができませんでした。どんな助けでも大歓迎です。
'input'要素の次に出力された任意の内容に適用されるフィルタは、' ng-model'または 'input'コントロールに影響を与えません。 – Claies
ええ、私は気づいた。問題の内容を示すサンプルコードを示しただけです。 – XVirtusX