我正在浏览Angular Transloco库https://ngneat.github.io/transloco/,我已经成功安装并尝试了示例https://ngneat.github.io/transloco/docs/plugins/locale/,所有工作都符合预期。比如说,
<span>
{{ 1000000 | translocoCurrency: 'symbol' : { minimumFractionDigits: 0 } }}
</span>
返回$1,000,000
现在我想改变或本地化的货币从$
让我们说尼日利亚货币(NGN)
,但我找不到这样做的方法。我看了文件,但没有帮助。
1条答案
按热度按时间6tdlim6h1#
在TranslocoCurrencyPipe中,“symbol”之后的下一个参数是货币代码。
所以你应该这样做: