Angular2 http.put在控制台中显示两个请求?

时间:2016-08-14 07:38:06

标签: angularjs http angular

其中一个请求来自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);
  }

这是网络: enter image description here

为什么我只提出两个请求时会收到两个请求?

0 个答案:

没有答案