Issue
Is it possible in Angular 2 to apply a pipe under condition? I would like to do something like:
{{ variable.text | (variable.value ? SomePipe : OtherPipe) }}
If not, what is the preferred way to achieve this effect?
Solution
You need to change the syntax a bit:
{{variable.value ? (variable.text | SomePipe) : (variable.text | pipe2)}}
Answered By - Günter Zöchbauer
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.