How to display the currency symbol to the right in Angular

前端 未结 8 1384
花落未央
花落未央 2020-12-15 04:37

I have to display Euro currency like this : 583 €.

But with this code:

{{ price | currency:\'EUR\':true }}

I get

8条回答
  •  温柔的废话
    2020-12-15 05:12

    Do it like this:

    {{price | currency:'EUR':true:'1.0-0'}}
    

    No need for extra pipes, it uses the default currency pipe

提交回复
热议问题