getFormatValue
根据传入的 format,按照已有的格式化方式格式传入的值
目前format支持的格式有:
percent(xx)
fixed(xx)
thousandSemicolon(xx)
rmb(xx) // 单位为分
date(xx) // 单位为秒
shortNumber(xx)
参数
参数 | 说明 | 默认值 |
---|---|---|
value | 需要格式化的值,兼容字符串类型的数字 | - |
format | 格式,如 percent,percent(2),fixed,fixed(2) | - |
options? | 配置项 | - |
options.shouldReturnNA? | value=undefined | null 是否返回 N/A |
返回值
如果是非数字,返回原值;
如果是 options.shouldReturnNA=true,value=undefined | null 则返回 N/A;
如果是正常数字则返回对象 {type: xx, value: xx}