我的应用中包含这些实体。
Category.ts
export class Category {
@PrimaryGeneratedColumn()
Id: number
@Column()
Name: string
@OneToMany(type => SubCategory, subcategoy => subcategoy.Category)
SubCategories: SubCategory[];
}
SubCategory.ts
export class SubCategory {
@PrimaryGeneratedColumn()
Id: number
@Column()
Name: string
@ManyToOne(type => Category, category => category.SubCategories)
@JoinColumn({name: "CategoryId"})
Category: Category;
}
现在,如果要添加新的子类别,我的DTO格式应该是什么样?我尝试了以下操作,但外键(CategoryId)为NULL。
SubCategoryDto.ts
export class SubCategoryDto {
Id: number;
Name: string;
CategoryId: number;
}
我理解为什么类别ID列的值在数据库中为空,因为类别ID试图转换为类别,但由于两者的类型不同而失败。我可以执行以下操作,但我觉得这样只会使请求数据变大(即使有点)
export class SubCategoryDto {
Id: number;
Name: string;
Category: CategoryDto; //has the properties of Id and Name
}
那么SubCategoryDto的格式应该是什么?我是否需要通过首先从数据库中获取类别然后创建SubCategory实体来将DTO转换为Entity类?例如:
//request data for new sub-category
{
Name: "Subcategory 1",
CategoryId: 1
}
在服务器端
const newSubcategory = new SubCategory(); //entity class
newSubcategory.Name = subCategoryDto.Name;
newSubcategory.Category = await this.categoryService.findById(subCategoryDto.CategoryId)
await this.subCategoryService.create(newSubcategory);
但是,如果我这样做,那不是额外的数据库调用吗?处理这种情况的最佳方法是什么?我整天都在搜索互联网,找不到与此相关的内容。我想这是一件很简单的事情,没有人需要问,但是不幸的是,我不确定应该如何处理。任何帮助将不胜感激。
答案 0 :(得分:1)
您需要在SubCategory实体中添加CategoryId属性,以允许映射DTO和实体:
export class SubCategory {
@PrimaryGeneratedColumn()
Id: number
@Column()
Name: string
@Column()
CategoryId: number
@ManyToOne(type => Category, category => category.SubCategories)
@JoinColumn({name: "CategoryId"})
Category: Category;
}
TypeORM自动生成该列,但没有“手动”声明,则试图在Date实体中转换DTO的CategoryId字段,并且失败。