我希望用户从计算机“上载”文件,将其存储在浏览器中(我想)并显示图像,而不将其发送到服务器。 基本上,我希望这种情况发生(例如网站上的示例):https://www.javascripture.com/FileReader
这是单独起作用的,但是我正在使用react-dropzone,但是它不起作用。
我的代码:
import React, { useCallback, useState } from "react";
import { useDropzone } from "react-dropzone";
import styles from "./dropzone.module.css";
import ImageZone from "../imagezone";
export default function Dropzone() {
const [path, setPath] = useState("");
const openFile = () => {
const reader = new FileReader();
reader.onload = () => {
const dataURL = reader.result;
setPath(dataURL);
};
};
const onDrop = useCallback(acceptedFiles => {
openFile();
}, []);
const { getRootProps, getInputProps, isDragActive } = useDropzone({ onDrop });
return (
<div className={styles.mycontainer}>
<div className={styles.dropzone} {...getRootProps()}>
<input {...getInputProps()} />
{isDragActive ? (
<p>Drop the files here ...</p>
) : (
<p>Drag 'n' drop some files here, or click to select files</p>
)}
</div>
<ImageZone src={path}></ImageZone>
</div>
);
}
答案 0 :(得分:0)
您可以使用文件阅读器api读取已删除文件的内容,然后显示它。您需要修复onload
回调
const onDrop = useCallback(acceptedFiles => {
const reader = new FileReader();
reader.onload = e => {
const dataURL = e.target.result;
setPath(dataURL);
};
acceptedFiles.forEach(file => reader.readAsArrayBuffer(file))
}, []);