我正在尝试保存用户的完整记录,但我依赖于两个单独的表。配置文件数据保存在一个资源中,地址保存在另一个资源中。如何编写代码,以便它首先保存配置文件,然后从生成的id保存地址?有可能?
这是我的创建用户代码:
export const BarberCreate = (props) => {
return (
<Create {...props}>
<TabbedForm toolbar={<BarberCreateToolbar />}>
<FormTab label="Perfil">
<TextInput source="name" />
<TextInput source="email" />
<DateInput source="birthday" />
<TextInput source="phone" placeholder="(99) 99999-9999" />
<TextInput source="transport" />
</FormTab>
<FormTab label="Endereço">
<TextInput source="street" label="Rua" />
<TextInput source="city" label="Cidade" />
<TextInput source="district" label="Bairro" />
</FormTab>
</TabbedForm>
</Create>
);
};```
largeQ
相关分类