首頁 > 軟體

解決Antd中Form表單的onChange事件中執行setFieldsValue不生效

2023-03-13 06:00:26

Antd中Form表單的onChange事件中執行setFieldsValue不生效

如果在Form表單中onChange事件中,手寫了一個setFieldsValue, 則不會生效。

原因是因為

Form表單會在手寫的onChange事件之後執行內部的setFieldsValue,所以會將我們之前手寫的setFieldsValue給覆蓋掉。

解決方案

1. 使用setTimeout延時。此方案不推薦

2. 使用getValueFromEvent. 是當onChange的時候,更改form表單的值的情景下使用

<FormItem label="路由節點" {...nodelayout}>
     {getFieldDecorator(`node`, {
        rules: [
           {
              required: true,
              message: '選擇要指定的路由節點',
            }],
        getValueFromEvent: (val: any) => {
            let nodesArr = [] as any;
             for (let item of transferList) {
                 for (let j of val) {
                    if ((item as any).id === j) {
                      nodesArr.push(item);
                    }
                  }
             }
             return nodesArr;
        }
     })(
    <Transfer
       operations={['>>', '<<']}
       dataSource={transferList}
       filterOption={(inputValue: any, option: any) =>
          option.value.indexOf(inputValue) > -1
       }
       showSearch
       lazy={false}
       targetKeys={targetKeys}
       onChange={transferHandleChange}
       onSearch={transferHandleSearch}
       render={item => item.value}
    />,
)}
</FormItem>

3. 如果你只想簡單的更改表單的值setFieldsValue,而不是在onChange的時候觸發。那麼可以使用normalize. 與上述的getValueFromEvent類似,都是option的一個屬性。

antd Design Form setFieldsValue的使用

最近專案使用的是antd Design 4.x 版本,碰到個需要載入後端資料並展示,並且使用者可以進行修改的需求,前端採用的是antd的Form表單來實現

元件載入的時候向後端請求資料

componentDidMount() {
        gainCountry().then(res => {
            // 這裡進行資料請求
            ......
        })
    }

form表單要回填資料一般會想到的是initialValues,但是這是適用於初始化值的時候,官方檔案的原話:“initialValues 不能被 setState 動態更新,你需要用 setFieldsValue 來更新”。

搜尋一番setFieldsValue的使用,基本上都是:this.props.form.setFieldsValue, props自帶form,試用之後發現報錯,this.props下沒有form,這個好像只適用於antd 3.x

解決

antd4.x 中使用setFieldsValue 是通過ref來進行操作,如下所示:

class Index extends Component{
    constructor(props) {
        super(props)
        this.state = { }
    }
    // 建立一個ref
    formRef = React.createRef()
    render(){
        return{
             {/* 繫結到Form身上*/}
             <Form ref={this.formRef}>
                <Form.Item name="example">
                   <Input />
                </Form.Item>
             </Form>
        }
    }
}
export default BaseInfo

在需要的地方進行使用:

// example 為Form.Item中的name
this.formRef.current.setFieldsValue({
       example: ‘從後臺返回要顯示的值',
                
})

結束語

官方檔案中都是有相關說明的,setFieldsValue 的使用我是在檔案中的一個例子中找到的,碰到問題的時候還是要多閱讀檔案

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com