Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

73
Views
Put request angular

My put function doesn't work, this is my service

updateP(partecipanti: Partecipanti): Observable<any> {
    return this.http.put(this.partecipantiUrl, partecipanti, this.httpOptions).pipe(
      tap(_ => this.log(`updated p id=${partecipanti.id}`)),
      catchError(this.handleError<any>('update'))
    );
  }

in my component I have

save(): void {
     if (this.part) {
       this.PartecipanteService.updateP(this.part)
         .subscribe(() => this.goBack());
         alert("Partecipante modificato correttamente")
     }
   }

and I call the save function in a button

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

what exactly is happening? do you see all logs? What do you see in the browser network tab, is the PUT request fired? is the request completed or still pending?

try to add some logs and handle the error anyway:

save(): void {
  console.log('will save');
     if (this.part) {
       console.log('this.part is true');
       this.PartecipanteService.updateP(this.part)
         .subscribe(() => {console.log('ok it works');this.goBack()},
         err => console.error('got an error', err)
);
         alert("Partecipante modificato correttamente")
     }
   }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!