使用以下表达式我期望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
是我期待的可能,或只是…管梦:)
用()包裹它
原文链接:https://www.f2er.com/angularjs/143655.html{{charge.offenseDate ? (charge.offenseDate | date) : 'No date'}}