我将创建一个程序(脚本),该程序在运行时会启动操作,因此我不在此程序中使用路由
我正在使用NestJS framework(要求)。
实际上,我正在尝试在main.ts
文件中编写代码,并使用我的方法导入服务。
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import {AppService} from './app.service'
import { TreeChildren } from 'typeorm';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
let appService: AppService; <- can't use appService methods
this.appService.
bootstrap();
我的服务
@Injectable()
export class AppService {
constructor(
@InjectRepository(File) private readonly fileRepository: Repository<File>,
) {}
async getTypes(): Promise<File[]> {
return await this.fileRepository.find();
}
}
我会使用服务来处理我的操作,所以我会使用DI,它不能在非类文件中工作。
我会知道如何在初始化时间内以适当的方式运行我的操作
答案 0 :(得分:2)
有两种方法可以做到这一点:
使用Execution Context访问任何服务:
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
const appService = app.get(AppService);
}
使用Lifecycle Event(类似于Angular中的变更检测挂钩)来运行代码并注入所需的服务,例如:
export class AppService implements OnModuleInit {
onModuleInit() {
console.log(`Initialization...`);
this.doStuff();
}
}
export class ApplicationModule implements OnModuleInit {
constructor(private appService: AppService) {
}
onModuleInit() {
console.log(`Initialization...`);
this.appService.doStuff();
}
}