1

我正在尝试在我的项目中使用 react-dropzone,但出现了不呈现 reactDropzone 组件的错误。我试过这个:

import ReactDropzone from 'react-dropzone';
export class BankingDetail extends React.Component {
  render() {
    return (
      <ReactDropzone
        accept="image/*"
        onDrop={()=>console.log("this.onPreviewDrop")}
      >
        Drop an image, get a preview!
      </ReactDropzone>
    );
  }
}

但出现文件中显示的错误: 谁能帮我解决这个问题?在此处输入图像描述

4

1 回答 1

0

您尝试将字符串作为子道具传递。但它具有儿童道具的功能。在此处阅读有关此组件的更多信息

于 2019-01-10T08:19:26.890 回答