我正在使用Edit
和SimpleForm
来自react-admin
. 如何创建自定义表单以允许自定义action
和type
提交?
应用程序.js
<Resource name="category" list={CategoryList} edit={CategoryEdit} />
index.js
<Edit actions={<CategoryEditActions />} title={<CategoryTitle />} {...props} >
<SimpleForm>
<DisabledInput source="id" />
<DisabledInput source="code" />
<TextInput source="name" />
</SimpleForm>
这里的 api 调用将/category/:categoryId
带有PUT
请求。我想将 url 修改为/category/:categoryId/test
使用方法 as POST
。有没有办法自定义这个?
我已经在我的 CustomDataProvider 中处理了这个 -
case UPDATE:
if(resource === 'category'){
options.method = 'POST';
url = `${apiUrl}/${resource}/${params.id}/test`;
} else {
options.method = 'PUT';
url = `${apiUrl}/${resource}/${params.id}`;
}
break;
有没有其他方法可以处理它?