我做错了什么? 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);
}