Neues Projekt mit dem Befehl 'nest new' gestartet. Funktioniert einwandfrei, bis ich eine Entitätsdatei hinzufüge.
Erhielt folgenden Fehler:
{Entity, Column, PrimaryGeneratedColumn} aus 'typeorm' importieren;
^^^^^^
SyntaxError: Importanweisung kann nicht außerhalb eines Moduls verwendet werden
Was vermisse ich?
Entität zum Modul hinzufügen:
import { Module } from '@nestjs/common';
import { BooksController } from './books.controller';
import { BooksService } from './books.service';
import { BookEntity } from './book.entity';
import { TypeOrmModule } from '@nestjs/typeorm';
@Module({
imports: [TypeOrmModule.forFeature([BookEntity])],
controllers: [BooksController],
providers: [BooksService],
})
export class BooksModule {}
app.module.ts:
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { Connection } from 'typeorm';
import { BooksModule } from './books/books.module';
@Module({
imports: [TypeOrmModule.forRoot()],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
src
Verzeichnis? Wenn Sie TypeORM verwenden, können Sie zeigen Ihren TypeOrmModule
Import in dem AppModule
‚s imports
Array? Möglicherweise stimmt etwas mit der Konfiguration nicht, die wir nicht sehen können