我想展示斯里兰卡卢比的货币符号。因为我们需要使用货币来显示角度js中的价格值。
答案 0 :(得分:0)
默认情况下,它可能取决于本地服务器的时区,因此您必须更改服务器的时区,或者您可以自定义显示您的货币符号,因此您有两个选项,关于第二个选项,您可以使用它这个:
<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>