olá, quando vou enviar os itens da API , aparece somente o log de "Deu erro".
no meu navegador aparece este erro: Failed to load resource: the server http://localhost:8080/apiagendamendo/agenda responded with a status of 404 (Not Found).
segue o códio do agendamentos-service.ts
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Injectable()
export class AgendamentosServiceProvider {
private _url = 'http://localhost:8080/api';
constructor( private _http: HttpClient ) {
}
agenda(agendamento){
return this._http.post(this._url+ 'agendamento/agenda',agendamento);
}
}