INR currency format

前端 未结 19 1773
栀梦
栀梦 2020-12-09 17:31

I need to show currency format like these, how can we show.

₹1
₹10
₹100
₹1,000
₹10,000
₹1,00,000
......
19条回答
  •  不思量自难忘°
    2020-12-09 18:12

    AngularJS

    In HTML

    {{ currency_expression | currency : symbol : fractionSize}}
    

    for example

    {{amount | currency:"₹":0}}
    

    AngularJS docs Currency Pipe

    Angular 2+

    {{amount | currency:'INR':'symbol-narrow':'4.2-2'}}
    

    you can also refer Currency Pipe

提交回复
热议问题