我以 react-final-form 显示货币值。我在现场使用格式功能。
const formatMoney = (value) => {
if (!value) return value;
const formatter = new Intl.NumberFormat('en-US', {
style: 'currency',
minimumFractionDigits: 2,
currency: 'USD'
});
return formatter.format(value);
};
问题是货币是表格中的另一种选择。我没有看到一种干净的方法来访问格式函数中的其余值。