我使用ImageInput创建SimpleForm。
我按照文件中的说明操作: https://marmelab.com/admin-on-rest/Inputs.html#imageinput 这是我的代码:
export const PostCreate = (props) => (
<Create actions={<PostCreateEditActions/>} {...props}>
<SimpleForm toolbar={<PostCreateEditToolbar/>} defaultValue={postCreateDefaultValue}>
<ImageInput source="pictures" label="画像" accept="image/*" >
<ImageField source="src"/>
</ImageInput>
</SimpleForm>
</Create>
);
但是当控制台记录错误时:
bundle.js:4903 Warning: Stateless function components cannot be given refs. Attempts to access this ref will fail.
Check the render method of TextField.
你能解释一下错误的原因吗?