-2

I have code in a function that I need for initialization of other variables. However, this function doesn't get called unless i call it through another tag in html. Is there any way that i can initialize this function or write the code in a way in which the code gets executed automatically as soon as the project starts executing the the website loads?

2
  • 1
    So you need to execute it before angular starts, or just during angular bootstrapping? Maybe ngOnInit is what you are looking for? angular.io/guide/lifecycle-hooks Commented Nov 30, 2018 at 11:46
  • Why don't you go through official documentation for learning angular angular.io/guide/quickstart Commented Nov 30, 2018 at 11:49

3 Answers 3

3

You should have a look at lifecycle hooks that are used in Angular, here is the link to the documents related.

lifecycle hooks

In here you can read about the OnInit() lifecycle hook which is triggered when a component is loaded ( after constructor ) and is an ideal place to look at initialising variables / calling functions.

public ngOnInit(): void {
   this.exampleText = 'Hello Component';
}

just make sure to implement it on your class like so

export class youClassHere implements OnInit {
 
    public exampleText: string;
    
    public ngOnInit(): void {
       //executing logic on component load
       this.exampleText = 'Hello Component';
    }
}
Sign up to request clarification or add additional context in comments.

Comments

1

You can implement OnInit event and do it there. Take a look here OnInit. Check here if you want to now more about Lifecycle Hooks. Alternative option is to use constructor. But that's executed on class initialization.

class MyComponent implements OnInit {
  ngOnInit() {
    // ...
  }
}

Comments

0

You can implement OnInit lifecycle in your class and call your function inside OnInit so that it gets called whenever your component gets mounted.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.