我正在尝试将文件夹内容上传到 firebase,但遇到了一些错误。
我正在使用react-dropzone像这样:
<section>
<Dropzone handleDrop={this.handleDrop.bind(this)} onDrop={this.onDrop.bind(this)} multiple={true} onDropRejected={this.handleDropRejected.bind(this)}>
Drag a file here or click to upload.
</Dropzone>
</section>
在我的“handleDrop”函数中;
onDrop(acceptedFiles,rejectedFiles) { acceptedFiles.forEach(file => { var storageRef = firebase.storage(); var fileRef = storageRef.ref(file.name); fileRef.put(file) .then(function (snapshot) { console.log('上传了一个 blob 或文件!'); }) .catch((e) => { }); }); }
我收到错误'net :: ERR_FILE_NOT_FOUND',直到firebase错误出现最大重试次数。