Angular - 将文件上传为base64

时间:2017-12-02 00:45:19

标签: json angular rest file-upload base64

我正在尝试将文件从Angular 4 app上传到JSON API服务,该服务接受base64字符串作为文件内容。

所以我做的是 - 用FileReader.readAsDataURL读取文件,然后当用户确认上传时,我将向API创建一个JSON请求并发送我之前获得的文件的base64字符串。

这就是问题的出发点 - 只要我对"内容"做一些事情。 (记录,发送,w / e)请求将被发送,但其 疯狂 缓慢,例如2MB文件需要20秒。

我试过了:

  • 使用ArrayBuffer并手动将其转换为base64
  • 将base64字符串存储在HTML中并稍后检索
  • 用户点击上传按钮后阅读文件
  • 使用@angular/common
  • 中的旧客户端
  • 使用普通XHR请求

但是一切都会导致相同的结果。

我知道问题出在哪里。但为什么会发生?是浏览器特定的还是角度特定的?是否有更优选的方法(请记住它必须是base64字符串)?

注意:

  • 更改API中的任何内容超出了我的控制
  • API很好,通过postman发送任何文件将立即完成

代码:

当用户将文件添加到dropzone时,此方法运行:

public onFileChange(files: File[]) : void {
    files.forEach((file: File, index: number) => {
        const reader = new FileReader;

        // UploadedFile is just a simple model that contains filename, size, type and later base64 content
        this.uploadedFiles[index] = new UploadedFile(file);

        //region reader.onprogress
        reader.onprogress = (event: ProgressEvent) => {
            if (event.lengthComputable) {
                this.uploadedFiles[index].updateProgress(
                    Math.round((event.loaded * 100) / event.total)
                );
            }
        };
        //endregion

        //region reader.onloadend
        reader.onloadend = (event: ProgressEvent) => {
            const target: FileReader = <FileReader>event.target;
            const content = target.result.split(',')[1];

            this.uploadedFiles[index].contentLoaded(content);
        };
        //endregion

        reader.readAsDataURL(file);
    });
}

当用户点击保存按钮

时,此方法会运行
public upload(uploadedFiles: UploadedFile[]) : Observable<null> {
    const body: object = {
        files: uploadedFiles.map((uploadedFile) => {
            return {
                filename: uploadedFile.name,
                // SLOWDOWN HAPPENS HERE
                content: uploadedFile.content
            };
        })
    };

    return this.http.post('file', body)
}

1 个答案:

答案 0 :(得分:4)

要将大文件发送到服务器,您应该使用FormData将其作为多部分而不是单个大文件发送。

类似的东西:

// import {Http, RequestOptions} from '@angular/http';
uploadFileToUrl(files, uploadUrl): Promise<any> {
  // Note that setting a content-type header
  // for mutlipart forms breaks some built in
  // request parsers like multer in express.
  const options = new RequestOptions();
  const formData = new FormData();

  // Append files to the virtual form.
  for (const file of files) {
    formData.append(file.name, file)
  }
  // Send it.
  return this.http.post(uploadUrl, formData, options);
    
}

另外不要忘记设置标题'Content-Type': undefined,我已经在这个问题上抓了几个小时。