类似这样的代码是不会执行的,因为Observables 是懒加载,需要主动订阅它才会真正执行
save(model) { var uri = this._baseUri + "/api/contact/AddContact"; let md = JSON.stringify(model); this.http.post(uri,JSON.stringify(md),{ headers: new Headers({ 'Content-Type': 'application/json' }) }) .map(res => res.json()); }
正确的代码应该是:
save(model) { var uri = this._baseUri + "/api/contact/AddContact"; let md = JSON.stringify(model); this.http.post(uri,{ headers: new Headers({ 'Content-Type': 'application/json' }) }) .map(res => res.json()).subscribe(); }原文链接:https://www.f2er.com/angularjs/147472.html