Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如果我不实现onInit接口并且仍然在组件中使用ngOnInit组件生命周期会发生什么?
因为我在没有实现接口的情况下使用了 ngOnInit生命周期钩子,所以它对我来说也是一样的。
所以只是想了解为什么我应该实现一个接口?
它仍将按预期工作。
界面帮助我们避免拼写和语法错误。
根据Angular Style Guide的建议
生命周期接口规定了类型化的方法签名。使用这些签名来标记拼写和语法错误。