- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到了 2 个扩展类 Typegoose
( Item
和 Player
)
在 Player
类我得到了一个数组 Ref<Item>[]
@arrayProp({itemsRef: Item})
items?: Ref<Item>[];
PlayersService
, 我用这个方法推送一个
Item
:
async pushItem( itemPlayerDto: {playerId: string, item: Item}) : Promise<Player> {
let player = await this.findById(itemPlayerDto.playerId);
player.items.push(itemPlayerDto.item);
return await new this.playerModel(player).save();
}
Players
,他们的
items
不是 pupolated,只有一个
Array of ObjectId
.
async findAll(): Promise<Player[]> | null {
return await this.playerModel.find().exec();
}
最佳答案
好的,这就是如何从 typegoose 类填充 Ref 项目(使用:populate 方法):
async findByName(playerName: string): Promise<Player> | null {
let player = await this.playerModel.findOne({'displayName': playerName}).exec();
let playerWithItems = await player.populate({
path: 'items',
model: 'Item'
}).execPopulate();
return playerWithItems;
}
关于mongoose - 使用 typegoose 将项目添加到 Ref 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51825036/
我一直在尝试在 typegoose 中对枚举数组进行建模,如下所示,但一直有编译错误。 export enum USER_ROLES { ADMIN = 'admin', SUBSCR
我正在将 nest js 与 mongodb 一起使用,并且对于 mongodb 建模,我正在使用 Typegoose 。他们还没有自动填充功能。 我正在使用 https://github.com/s
我一直在尝试使用 Typegoose 使用 class-transformer 库完成 Mongodb 序列化部分的 NestJs 示例。在 https://docs.nestjs.com/techn
我得到了 2 个扩展类 Typegoose ( Item 和 Player ) 在 Player类我得到了一个数组 Ref[] @arrayProp({itemsRef: Item})
在我工作的公司,我们正在创建一个用 Nodejs 制作的应用程序,我们对实现 Typegoose 有疑问。我们有一个关于实现的问题。我们找不到放置“私有(private)”属性的方法。我该怎么做? 最
我正在使用 Type-GraphQl(它是一个 Typescript 库,可让您使用 Typescript 类自动生成 GraphQL 模式和解析器)和 Typegoose(它对 Mongoose 查
我使用 NestJs + Typegoose。如何在 NestJs + Typegoose 中将 _id 替换为 id?我没有找到一个明确的例子。我尝试了一些东西,但没有任何结果。 @modelOpt
我是一名优秀的程序员,十分优秀!