如何在antd组件中格式化数字货币后缀?

时间:2019-08-14 09:34:51

标签: reactjs next.js antd ant-design-pro

作为标题,我尝试了很多次代码但均未成功,希望能得到社区的帮助

此代码格式的货币前缀!

<InputNumber
   defaultValue={1000}
   formatter={value => `$ ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ',')}
   parser={value => value.replace(/\$\s?|(,*)/g, '')}
/>

0 个答案:

没有答案