[管理上静止] - "警告"使用ImageInput

时间:2017-12-05 09:01:34

标签: reactjs admin-on-rest

我使用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.

你能解释一下错误的原因吗?

0 个答案:

没有答案