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

155
Views
Call function after set timeout in Angular 12 TypeScript?

I would like to use saveAsDraft function after set timeout process. But I get an error. What do I use for this? Callback, promise or ...

  export class EditBlogComponent implements OnInit {
    ...
    //For draft save
    typingTimer:any;
    doneTypingInterval = 5000;
    ....

    saveAsDraft(blog:Blog) {
       console.log("Taslak kaydediliyor.", this.blog);
    }

    draftSecond(formValue: string) {
        clearTimeout(this.typingTimer);
        this.typingTimer = setTimeout(saveAsDraft(this.blog), 
        this.doneTypingInterval);
    }
  }

Image;

enter image description here

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

0

Your call to saveAsDraft should be insider a function.

The syntax is -

setTimeout(function(){ ... }, timeInMilliseconds);

So your call should be -

setTimeout(function(){
     saveAsDraft(this.blog);
}, timeInMilliseconds);

Additionally, just check if this is available inside the function(). It might not be. so you can do like -

var refToThis = this;
setTimeout(function(){
     refToThis.saveAsDraft(refToThis.blog);
}, timeInMilliseconds);

or use arrow functions

setTimeout(()=>{
     this.saveAsDraft(this.blog);
}, timeInMilliseconds);

You can not access saveAsDraft without this since that is a class member and can only be accessed using its object.

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!