如何以formdata angular 4发送数组数据

时间:2018-02-22 06:35:33

标签: angular http-post angular-http

我试图发布一个未发送到服务器的数据数组:

webservice:

 deleteCategory() {
    return  this.http.post('http://www.demo/webapi/deletecategory', { 
        headers: {
          "Authorization": "Token " + this.token,
          "Content-Type": "application/x-www-form-urlencoded"
        },
        withCredentials: true
      }
      )
    }
ts文件中的

onDelete() {
      this.userService.deleteCategory().subscribe(response => {
      this.selectedArray = [];
     for (var i = 0; i< this.selection._selected.length; i++){
     this.selectedArray.push(this.selection._selected[i].category_id) ;
     console.log(' selected value:', this.selectedArray);

     }
    })
      }

in html

<button class="btn-danger pull-right" (click)="onDelete()" type="button"  >Delete</button>

2 个答案:

答案 0 :(得分:1)

您必须创建FormData对象并在此对象中追加数组。它看起来像

function createFormData(yourArray) {
  const fd = new FormData();
  fd.append(
    'keyName',
     new Blob( [ JSON.stringify( yourArray ) ], { type : 'application/json' } ) );
  return fd;
}

答案 1 :(得分:1)

现在,您的deleteCategory()方法正在向具有空请求正文的指定端点发出POST请求。

这是一个关于如何使用Angulars HttpClient在POST请求中包含对象数组的简单示例

this.http.post('some url', JSON.stringify(yourArrayOfObjects), {headers: ...})

如果您想发送FormData(例如,如果您要将文件上传到服务器)

 const frmData = new FormData();
 frmData.append("fileUpload", file)
 this.http.post('some url', frmData, {headers:...})