web-dev-qa-db-ja.com

$ httpを使用してangularでmultipart / form-dataファイルを送信します

これについて多くの質問があることは知っていますが、これを機能させることはできません。

Multipart/form-dataで入力からサーバーにファイルをアップロードしたい

2つの方法を試しました。最初:

headers: {
  'Content-Type': undefined
},

その結果、例えば画像用

Content-Type:image/png

一方、マルチパート/フォームデータである必要があります

およびその他:

headers: {
  'Content-Type': multipart/form-data
},

しかし、これは境界ヘッダーを要求します。これは手動で挿入しないでください...

この問題を解決するクリーンな方法は何ですか?私はあなたができると読んだ

$httpProvider.defaults.headers.post['Content-Type'] = 'multipart/form-data; charset=utf-8';

しかし、すべての投稿をmultipart/form-dataにしたくありません。デフォルトはJSONである必要があります

33
Thomas Stubbe

FormDataオブジェクトをご覧ください: https://developer.mozilla.org/en/docs/Web/API/FormData

this.uploadFileToUrl = function(file, uploadUrl){
        var fd = new FormData();
        fd.append('file', file);
        $http.post(uploadUrl, fd, {
            transformRequest: angular.identity,
            headers: {'Content-Type': undefined}
        })
        .success(function(){
        })
        .error(function(){
        });
    }
62
jstuartmilne

Angular 4および5の更新された回答を次に示します。TransformRequestおよびangular.identityは削除されました。また、1つのリクエストでJSONファイルとファイルを結合する機能を含めました。

Angular 5ソリューション:

import {HttpClient} from '@angular/common/http';

uploadFileToUrl(files, restObj, 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 = {} as any; // Set any options you like
  const formData = new FormData();

  // Append files to the virtual form.
  for (const file of files) {
    formData.append(file.name, file)
  }

  // Optional, append other kev:val rest data to the form.
  Object.keys(restObj).forEach(key => {
    formData.append(key, restObj[key]);
  });

  // Send it.
  return this.httpClient.post(uploadUrl, formData, options)
    .toPromise()
    .catch((e) => {
      // handle me
    });
}

Angular 4ソリューション:

// Note that these imports below are deprecated in Angular 5
import {Http, RequestOptions} from '@angular/http';

uploadFileToUrl(files, restObj, 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)
  }

  // Optional, append other kev:val rest data to the form.
  Object.keys(restObj).forEach(key => {
    formData.append(key, restObj[key]);
  });

  // Send it.
  return this.http.post(uploadUrl, formData, options)
    .toPromise()
    .catch((e) => {
      // handle me
    });
}
24
y3sh

Angular 6では、次のことができます。

サービスファイル:

 function_name(data) {
    const url = `the_URL`;
    let input = new FormData();
    input.append('url', data);   // "url" as the key and "data" as value
    return this.http.post(url, input).pipe(map((resp: any) => resp));
  }

Component.tsファイル:任意の関数でxyzと言います、

xyz(){
this.Your_service_alias.function_name(data).subscribe(d => {   // "data" can be your file or image in base64 or other encoding
      console.log(d);
    });
}
2
Abhishek Gupta