当我在angular js中使用“ currency”时,我得到了美元符号。如何根据要求获取所需的货币符号。好像现在我需要知道如何使用货币显示卢比符号。如果有人可以解释在不同需求时如何将这种货币用于不同的符号,这将非常有用。
样本:
Item Price<span style="font-weight:bold;">{{item.price | currency}}</span>
如果我的item.price是200。这里显示200 $。我需要显示卢比符号而不是美元。
要在angular js中显示货币符号,您需要为货币符号提供HTML实体,以下是示例和用法(通过代码和模板使用):
在您的欧元模板示例中:
Item Price<span style="font-weight:bold;">{{price | currency:"€"}}</span>
卢比的例子:
Item Price<span style="font-weight:bold;">{{price | currency:"₹"}}</span>
还要检查下面的网址
http://www.cs.tut.fi/~jkorpela/html/euro.html
从控制器:
在控制器中注入$ filter
$scope.price=$filter('currency')($scope.price,'€')