Use query parameters to set the initial form values
Can I use query parameters to set the initial form values for antd's useform? For example, in app.tsx I set the create route for products as
So, when I go to the url products/create/1 I want to set 1 as the value in the form for the field category_id
create: "/products/create/:category_id"So, when I go to the url products/create/1 I want to set 1 as the value in the form for the field category_id
