其中一个请求来自zone.js,另一个来自"其他"
saveContact(contact: Contact) {
let body = contact;
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
return this.http.put(`http://localhost:8082/business/${contact.businessId}/contacts/${contact.contactId}`, body, headers)
.map(this.returnSuccess)
.catch(this.handleError);
}
为什么我只提出两个请求时会收到两个请求?