1

フォルダーの内容を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, rejectFiles) {acceptedFiles.forEach(file => {var storageRef = firebase.storage(); var fileRef = storageRef.ref(file.name); fileRef.put(file) .then(関数 (スナップショット) { console.log('ブロブまたはファイルをアップロードしました!'); }) .catch((e) => { }); }); }

firebase が最大再試行回数でエラーになるまで、「net::ERR_FILE_NOT_FOUND」というエラーが発生します。

4

0 に答える 0