我在angular2中发帖请求。我正在使用此功能,因为我想跟踪进度百分比
const postReq = new HttpRequest('POST','urlendpoint', formData, {
reportProgress: true,
headers: new HttpHeaders({'content-type':'application/x-www-form-urlencoded'})
});
formData
是要提交的数据。
此请求的问题是它没有发送帖子参数,方法也是OPTIONS
而不是POST
。
有人可以解释一下这个请求有什么问题以及如何修复它。?