pro-components icon indicating copy to clipboard operation
pro-components copied to clipboard

🧐[问题]为什么ProForm没有像ProTable那样的reload方法

Open 704998200 opened this issue 1 year ago • 2 comments

提问前先看看:

https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md

🧐 问题描述

为什么ProForm没有像ProTable那样的reload方法,我提交表单后想重新刷新表单数据,有没有什么方法能重新调用ProForm的request方法

💻 示例代码

const CompanyDetail = () => {
  const { id } = useParams();
  const [form] = useForm();
  
  return (
    <ProForm grid submitter={false} request={handler.initDetail} params={{ id }} form={form}>
    </ProForm>
  );
};

🚑 其他信息

这是ProTable的reload image

704998200 avatar Apr 23 '24 06:04 704998200