我正在尝试开始使用使用TypeORM的NestJS。
我已连接到数据库。至少我想我有,因为我遇到了很多错误,并且在对配置进行了足够的调整之后,错误消失了,连接似乎成功了。
所以现在我想获取任何数据只是为了开始。
数据库中有一个名为RESULT_PAGE的表,所以我只想从中获取任何记录。这是我尝试过的:
result-page.entity.ts
import { Entity, PrimaryColumn, Column } from "typeorm";
@Entity()
export class ResultPage {
@PrimaryColumn()
result_page_id: number;
@Column({ length: 1 })
approval: string;
@Column({ length: 1})
manually_uploaded: string;
}
result-page.controller.ts
import { Controller, Get, Request } from '@nestjs/common';
import { ResultPageService } from './result-page.service';
@Controller('result-page')
export class ResultPageController {
constructor(
private resultPageService: ResultPageService
) { }
@Get('get-all')
getProfile() {
return this.resultPageService.findAll();
}
}
result-page.service.ts
import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { Repository } from 'typeorm';
import { ResultPage } from './result-page.entity';
@Injectable()
export class ResultPageService {
constructor(
@InjectRepository(ResultPage)
private readonly resultPageRepository: Repository<ResultPage>,
) {}
findAll(): Promise<ResultPage[]> {
return this.resultPageRepository.find();
}
}
如果我将服务编辑如下:
import { Injectable } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { Repository } from 'typeorm';
import { ResultPage } from './result-page.entity';
@Injectable()
export class ResultPageService {
constructor(
@InjectRepository(ResultPage)
private readonly resultPageRepository: Repository<ResultPage>,
) {}
findAll(): Promise<string> {
return new Promise((resolve, reject) => { resolve('hello world') })
// return this.resultPageRepository.find();
}
}
然后我得到“ hello world”,因此肯定是RESULT_PAGE表未连接
在AppModule中,我正在加载这样的实体
const typeOrmModuleOptions: TypeOrmModuleOptions = {
...
entities: [__dirname + '/**/*.entity{.ts,.js}'],
synchronize: true
}
我确信我犯了一些绝对的菜鸟错误,因此,如果有人可以在这里帮助我,将不胜感激。我对数据库和api还是很陌生,所以任何信息都可以帮助很多。 TIA
已解决
通过添加connectString https://github.com/typeorm/typeorm/issues/3484#issuecomment-472315370
解决答案 0 :(得分:1)
这个问题有点令人困惑。我错过了错误和数据库配置。
result_page与RESULT_PAGE:表名
在linux / unix上,表名区分大小写,因此应在注释中设置
@Entity({name: 'RESULT_PAGE'})
请提供一些详细信息,以查找根本原因。