简体   繁体   中英

How to display symbol of Sri lankan rupees in Angularjs currency?

I would like to display Sri lankan rupee's symbol for the currency. As we need to use currency to display price values in angular js.

By default it can be depend on the local server's time zone so either you have to change the time zone of your server or you can custom display your currency symbol, so you have two option, about second option you may use it like this :

<body ng-controller="indexCtrl">

    Input: <input type="text" ng-model="amount">
    <h3>{{ amount | currency : "RS : " }}</h3> // Your currency 
  OR
   <h3>{{ amount | currency : "₹ : " }}</h3> // Your currency symbol here it's temporary Indian currency symbol


</body>
</html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM