1. 程式人生 > 實用技巧 >antd3.x InputNumber內容為‘‘或null顯示0

antd3.x InputNumber內容為‘‘或null顯示0

方法1
用InputNumber中的formatter屬性對資料進行處理
把資料轉換成number型別
null和‘’都會轉換成0
描述
方法2
用this.props.form.setFieldsValue

注意點:
這裡要延時執行,不然資料不能更新
描述
方法3
用getFieldDecorator中的屬性getValueFromEvent屬性
詳細檢視官網api:https://3x.ant.design/components/form-cn/#getFieldDecorator(id,-options)-%E5%8F%82%E6%95%B0描述