单击“生成反应”后,将重新加载页面,从而取消附加到网络的照片。因此它无法处理OCR。我该怎么做才能使其不重新加载页面并开始运行OCR进程。
一些代码
<label className="fileUploaderContainer">
Click here to upload documents
<input
type="file"
id="fileUploader"
onChange={this.handleChange}
multiple
/>
</label>
<div>
{" "}
{this.state.uploads.map((value, index) => {
return (
<img key={index} src={value} width="100px " alt="state.uploads.map" />
);
})}{" "}
</div>
<button onClick={this.generateText} className="button">
{" "}
Generate{" "}
</button>