【发布时间】:2016-07-12 13:09:01
【问题描述】:
当我发出 post 请求时,angular 2 http 不会发送此请求
this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions())
http post 不会发送到服务器,但如果我发出这样的请求
this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions()).subscribe(r=>{});
这是有意的吗?如果是的话,有人可以解释一下为什么吗?或者它是一个错误?
【问题讨论】:
标签: angular angular2-http