【发布时间】:2016-10-29 04:45:38
【问题描述】:
我想构建自己的格式化程序,以显示应以不同货币显示的金额。
可能会猜到我使用的是我已经知道的解决方案:
<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} 格式化输出值
【问题讨论】:
标签: javascript sapui5 formatter