2017-03-06 11:40:23 +08:00
---
order: 4
title:
2019-05-07 14:57:32 +08:00
zh-CN: 格式化展示
en-US: Formatter
2017-03-06 11:40:23 +08:00
---
## zh-CN
2017-04-10 11:16:41 +08:00
通过 `formatter` 格式化数字,以展示具有具体含义的数据,往往需要配合 `parser` 一起使用。
2017-03-06 11:40:23 +08:00
2020-08-16 19:32:48 +08:00
> 这里有一个更复杂的货币格式化输入框:[https://codesandbox.io/s/currency-wrapper-antd-input-3ynzo](https://codesandbox.io/s/currency-wrapper-antd-input-3ynzo)
2017-03-06 11:40:23 +08:00
## en-US
2017-04-10 11:16:41 +08:00
Display value within it's situation with `formatter` , and we usually use `parser` at the same time.
2017-03-06 11:40:23 +08:00
2020-08-16 19:32:48 +08:00
> Here is a Intl.NumberFormat InputNumber implementation: [https://codesandbox.io/s/currency-wrapper-antd-input-3ynzo](https://codesandbox.io/s/currency-wrapper-antd-input-3ynzo)
2019-05-07 14:57:32 +08:00
```jsx
2017-03-06 11:40:23 +08:00
import { InputNumber } from 'antd';
function onChange(value) {
console.log('changed', value);
}
ReactDOM.render(
2020-07-07 22:06:00 +08:00
< >
2017-04-10 11:16:41 +08:00
< InputNumber
defaultValue={1000}
2017-08-06 11:57:56 +08:00
formatter={value => `$ ${value}` .replace(/\B(?=(\d{3})+(?!\d))/g, ',')}
2017-04-10 11:16:41 +08:00
parser={value => value.replace(/\$\s?|(,*)/g, '')}
onChange={onChange}
/>
< InputNumber
defaultValue={100}
min={0}
max={100}
formatter={value => `${value}%` }
parser={value => value.replace('%', '')}
onChange={onChange}
/>
2020-07-07 22:06:00 +08:00
< />,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```