在angular2中为HttpRequest发出HttpClient请求

时间:2017-09-04 10:25:09

标签: angular typescript

我在angular2中发帖请求。我正在使用此功能,因为我想跟踪进度百分比

const postReq = new HttpRequest('POST','urlendpoint', formData, {
  reportProgress: true,
  headers: new HttpHeaders({'content-type':'application/x-www-form-urlencoded'})
});

formData是要提交的数据。

此请求的问题是它没有发送帖子参数,方法也是OPTIONS而不是POSTenter image description here

有人可以解释一下这个请求有什么问题以及如何修复它。?

0 个答案:

没有答案