pro-components
pro-components copied to clipboard
🧐[问题]为什么ProForm没有像ProTable那样的reload方法
提问前先看看:
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