Angular 2 Rest未在浏览器控制台中发布且没有错误

时间:2017-06-17 04:49:29

标签: angularjs rest angular-promise

我做错了什么? Rest API与Postman完美配合。

但我无法点击帖子休息,浏览器控制台也没有错误。

public addItem = (): Observable<ILista_Compra> => {
  return this._http.post(this._listaCompraAdd,'{"consultaComentario": "consultas to",    "respuestaConsulCom": "aqui esta su respuesta"}' , { headers: this.headers })
    .map((response: Response) => <ILista_Compra[]>response.json())
    .catch(this.handleError);            
}

0 个答案:

没有答案