我正在尝试覆盖“编辑”视图中的simpleForm中的记录特定值, 例如,我有一条具有以下属性(id,文本)的记录, 当我尝试对其进行编辑时,它将自动从记录中加载值。如何用代码预填充并覆盖 text 值?
export const FormEdit = props => {
const value = "test text";
return(
<Edit {...props}>
<SimpleForm>
<DisabledInput source="id" />
<TextInput source="text" />
</SimpleForm>
</Edit>
)};
我希望 text 属性自动填充 value ,该怎么做?