文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
生命周期事件
生命周期事件
There are two module lifecycle events OnModuleInit and OnModuleDestroy. You should use them for all the initialization stuff and avoid to work in the constructor. The constructor should only be used to initialize class members but nothing more. Example:
有两个生命周期事件OnModuleInit
和OnModuleDestroy
。你应该使用它们来初始化所有的内容,从而避免在构造函数中初始化。因为构造函数只用于初始化类成员。
示例:
import { OnModuleInit, OnModuleDestroy } from '@nestjs/common';
@Component()
export class UsersService implements OnModuleInit, OnModuleDestroy {
onModuleInit() {
console.log('Module initialized...');
}
onModuleDestroy() {
console.log('Module destroyed...');
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论