gpt4 book ai didi

javascript - 欧元格式剑道网格列 Angular JS

转载 作者:行者123 更新时间:2023-11-30 06:20:15 25 4
gpt4 key购买 nike

我在kendo中有一列是金额,这一列以美元格式呈现,对应的列明细为

{
field: 'INVOICE_AMOUNT_ORIGINAL',
title: $translate.instant('invoiceAmount'),
format: '{0:n}',
headerTemplate: '{{ \'invAmount\' | translate }}',
attributes: {
style: 'text-align: right;'
},
width: 115
},

我现在希望将此格式更改为欧元格式,在阅读剑道纪录片后,我尝试将上面代码中的格式设置为:'{0:c}',但它在前面给出了美元符号,如何我可以将格式转换为欧元吗?我不需要任何转换,只需要从美元到欧元的格式

最佳答案

我认为您必须定义您拥有的货币类型 this :

---
[format]="{ style: 'currency', currency: 'EUR' }",
---

另一个解决方案可能是 this方法:

 ---
format: '{0:c3}', // converts to euro (according to the site)
---

关于javascript - 欧元格式剑道网格列 Angular JS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53601059/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com