我正在尝试将文件夹内容上传到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 =&gt; { var storageRef = firebase.storage(); var fileRef = storageRef.ref(file.name); fileRef.put(文件) .then(function(snapshot){ console.log('上传了一个blob或文件!'); }) .catch((e)=&gt; { }); }); }
我收到错误'net :: ERR_FILE_NOT_FOUND',直到firebase错误出现最大重试次数。