繁体   English   中英

在 SAPUI5 中为货币使用格式化程序

[英]Using a Formatter for the Currencies in SAPUI5

我想构建自己的格式化程序来显示不同货币的金额。

有人可能猜到我使用了这个我已经知道的解决方案:

                                               <t:template>
                                <Text text="{
                                                parts: [
                                                    {path: 'amount'},
                                                    {path: 'currency'}
                                                ],
                                                type:'sap.ui.model.type.Currency',
                                                formatOptions: {
                                                    currencyCode: false
                                                }
                                            }"
             </t:template>

这个解决方案的问题是我已经在一个单独的列中显示了货币,如果我使用这个解决方案,它看起来很丑......

所以我尝试了这个:

<t:template>
                                <Text text="{parts: [                
                                {path: 'amount'},
                                {path: 'currency'}
                                ],               
                                formatter : '.formatter.currency'}"
                                 />
                            </t:template>

我的格式化程序功能如下所示:

    currency: function(amount, currency) {

        var change = [];
        change.push(amount);
        change.push(currency);
        var sInternalType = "";
        var amount1 = new sap.ui.model.type.Currency();


            amount1.formatValue(change, sInternalType);
            return amount1;
    }

在这里,我想我做错了什么,因为英语不是我的第一语言,我可能会认为我没有正确理解 API 参考,因为它们是这样说的:

  • formatValue(vValue, sInternalType): 任何
  • 将包含金额和货币代码的给定数组格式化为字符串类型的输出值。 Currency 类型不支持除 'string' 之外的其他内部类型。 如果已为此类型定义了源格式,则 formatValue 也接受字符串值作为输入,该值将使用源格式解析为数组。 如果 aValues 未定义或为 null,则返回 null。
  • 参数:
  • {array|string} vValue 要格式化的值或字符串值的数组
  • {string} sInternalType 目标类型
  • 返回:
  • {any} 格式化输出值

如果您打算不显示货币符号或代码,因为您已经在其他地方显示了它,您可以简单地将showMeasure设置为false ,例如:

<Text xmlns:core="sap.ui.core"
  core:require="{ CurrencyType: 'sap/ui/model/type/Currency' }"
  text="{
    parts: [
      'amount',
      'currency'
    ],
    type: 'CurrencyType',
    formatOptions: {
      showMeasure: false
    }
  }"
/>

不显示货币代码/符号是标准货币类型的一个特征。 你不需要扩展它。


注意:在 OData V4 的情况下,需要类型sap/ui/model /odata /type/Currency

如果要使用自定义格式化程序,可以这样定义:

currency: function(amount, currency) {

    var oCurrency = new sap.ui.model.type.Currency({
        showMeasure: false       
    });

    return oCurrency.formatValue([amount,curreny], "string");

}

但我建议在您的用例中使用 jpenninkhof 的解决方案

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM