在条件表达式中使用日期管道 – Angular 2

前端之家收集整理的这篇文章主要介绍了在条件表达式中使用日期管道 – Angular 2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用以下表达式我期望Angular通过日期管道插入日期(如果不是null),但是我得到了进行中的错误.
{{charge.offenseDate ? charge.offenseDate | date : 'No date'}}

EXCEPTION: Error: Uncaught (in promise): Template parse errors:
Parser Error: Conditional expression {{charge.offenseDate ? charge.offenseDate | date : 'No Date' }} requires all 3 expressions at the end of the expression

是我期待的可能,或只是…管梦:)

用()包裹它
{{charge.offenseDate ? (charge.offenseDate | date) : 'No date'}}
原文链接:https://www.f2er.com/angularjs/143655.html

猜你在找的Angularjs相关文章