我正在使用loginComponent开发示例项目,当我尝试添加OnInit时,我需要在我的类中实现OnInit我收到以下错误
[ts]找不到OnInit
这是我的代码
export class loginComponent implements OnInit{
ngOnInit():all{
}
}
如何解决此问题
提前致谢
答案 0 :(得分:13)
import { OnInit } from '@angular/core';
答案 1 :(得分:3)
您需要从" @ angular / core"中导入它。此外,您不需要从此方法返回任何内容,因此您可以安全地跳过返回类型。
import {OnInit} from '@angular/core';
export class loginComponent implements OnInit {
ngOnInit() {
}
}