Angular - Error Cannot find name 'OnInit' - Solved
This tutorial will give you example of Cannot find name 'OnInit' in angular. We will look at example of angular error ts2304 cannot find name 'oninit'. we will help you to give example of angular cannot find oninit error. step by step explain angular cannot find name oninit. Follow bellow tutorial step of solve cannot find name oninit angular typescript error.
You can use this solution with angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 version.
In this post, I will give you the solution of "Cannot find name 'OnInit'" in angular application. we need to import OnInit from @angular/core library. so let's see below the solution and full code.
Error Preview:
Solution:
let's import OnInit from @angular/core npm package, as bellow:
Import OnInit:
import { Component, OnInit } from '@angular/core';
Let's see bellow working code:
Example:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit{
title = 'my-new-app';
ngOnInit() {
this.title = "Title Updated";
}
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Angular setInterval() and clearInterval() Example Tutorial
- Angular 13 CRUD Application Example Tutorial
- Angular 13 Bootstrap Modal Popup Example
- Angular Material Multi Select Dropdown with Chips Example
- Multiple File Upload in Angular 12 Example
- Angular Bubble Chart Example Tutorial
- Angular Radar Chart Example Tutorial
- Angular Line Chart Example Tutorial
- Angular Material Datepicker Disable Previous Dates Example
- Angular Input Keydown Event Example