欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

antd自定义组件初始值没有返回或者设置initialValue,form.validateFields不会执行验证

程序员文章站 2022-04-04 16:07:00
...

在自定义组件中加个componentDidMount返回初始值就可以啦

  componentDidMount() {
        const { onChange } = this.props;
        onChange({
            ...this.state,
        });

    }
相关标签: react antd