I have following text input filled by model value in timestamp:
<input type="datetime" ng-model="workerDetail.dateOfBirth" class="form-control" id="date_of_birth" />
It displays value in input as given timestamp.
I would like to convert value which is visible in input into formatted date (YYYY/MM/DD), but in model should be always as timestamp.
I tried to do it by this way:
{{workerDetail.dateOfBirth | date:'MMM'}}
But without luck.
Thanks for any advice.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…