答案 0 :(得分:1)
使用Content-Type: application/x-www-form-urlencoded
时,请改用URLSearchParams
;
import { URLSearchParams } from '@angular/http';
并在帖子功能中,不要发送您的对象body
,而是执行此操作:
let postBody = new URLSearchParams();
postBody.set('yourProperty1', body.yourProperty1);
postBody.set('yourProperty12', body.yourProperty2);
...
return this._htpp.post('yourUrl', postBody, options)
.map(...)