如何在AngularJS中将其他货币格式(例如欧元)添加到货币过滤器?

<div ng-app>
    <p>
        <label>Enter Cost</label>
        <input type="text" ng-model="cost" />
    </p>

    <p> {{ cost | currency }} </p>
</div>

最佳答案

您可以选择为所选币种创建自定义过滤器。但是,根据Angulars Documentation on the Currency Filter,您可以简单地为您的currency提供符号,货币缩写和小数位格式设置。

在HTML模板绑定(bind)中:

{{ currency_expression | currency : symbol : fractionSize}}

在JavaScript中:
$filter('currency')(amount, symbol, fractionSize)

关于javascript - 向AngularJS添加其他货币格式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34053700/

10-13 00:33