在我的react-admin
应用中,有一个Create
组件。我读到可以提供record
属性来初始化Create
组件,如下所示。
const MyRecord = {
year: 2000,
name: "John Doe"
};
export const MyCreate = props => (
<Create record={MyRecord} {...props}>
<SimpleForm>
<DisabledInput source="year" />
<DisabledInput source="name" />
</SimpleForm>
</Create>
);
这可行,但是现在我想用来自API调用的响应填充MyRecord
,即record
。这样的东西(伪代码)...
const response = API.get("/resource");
const MyRecord = {
year: response.data.year,
name: response.data.name
};
但是我不知道如何在React / react-admin中做到这一点。
答案 0 :(得分:1)
这可能只会帮助您接近。但是,一种方法可能是使MyCreate
成为类组件,并为componentDidMount上的默认值调度API调用。您还可以根据情况提前分发它。在生产中执行此操作的更好方法只是一个示例...
class MyCreate extends React.Component {
constructor(props) {
super(props);
// these will be our defaults while fetch is occurring.
this.state = {
record: {
year: 1900,
name: '',
id: 0
}
};
}
componentDidMount() {
//don't actually fetch in cdm
fetch('/resource').then(resp => this.setState({record: resp}))
}
render() {
return (
<Create {...this.props}>
<SimpleForm defaultValues={this.state.record}>
<DisabledInput source="year" />
<DisabledInput source="name" />
</SimpleForm>
</Create>
);
}
}
此外,除了覆盖record
外,您还可以在<SimpleForm>
上使用defaultValues道具,该道具是专门为此目的而设计的。
https://marmelab.com/react-admin/CreateEdit.html#default-values