각도 응용 프로그램에서 사용하고있는 날짜 파이프를 입력 내에서 템플릿에서 사용할 때 올바르게 구문 분석하려고합니다. 처음에는 날짜를 포맷하기 전에, 코드는 다음과 같이 보았다 :날짜 형식화 및 화면에 인쇄 된 각도 2 App
<input class="app-input"
{{ staff.profile.hireDate | date:'shortDate' }} placeholder="None"
[field-status]="getPropertyStatus('profile.hireDate')"/>
그러나 그 뷰에 출력하는 것은 (이것이다 :
<input class="app-input" [readonly]="!hasAdminAccess"
[(ngModel)]="staff.profile.hireDate" placeholder="None"
[field-status]="getPropertyStatus('profile.hireDate')"/>
을 내가 날짜 파이프 왔 가장 가까운이있다 말 그대로이) :
: 이제> <input class="app-input" 3/18/2014 placeholder="None"
> [field-status]="getPropertyStatus('profile.hireDate')"/>
, 당신은 올바른 형식의 날짜가 있음을 알 수 있습니다 (그리고 날짜 변환이 성공적으로 일어나고, 그것을이 만들려면
3/18/2014
그러나 나머지 (분명히)는 원하지 않습니다. 날짜를 인쇄하기 위해 여기에 구문을 어떻게 다시 적용 할 수 있습니까? 나는 그것을 쳐다 보았고 약간의 개조를 시도했지만 아직까지는 작동시키지 못했습니다.
값 = '{{staff.profile.hireDate | date : 'shortDate'}} '입력 태그에 – getbuckts