它确实以这种方式工作:
@prop()
@ApiProperty({
description: "正面内容",
type: 'array',
items: {
type: 'array',
items: {
default: {
aa:33,
bb:44
}
}
}
})
front: TplParentData[][]
但它没有以这种方式工作:
class dto{
@prop({ default: 33 })
@ApiProperty({ example: 33 })
a: number
@prop({ default: 44 })
@ApiProperty({ example: 44 })
b: number
}
@prop()
@ApiProperty({
description: "正面内容",
type: 'array',
items: {
type: 'array',
items: {
default:dto
}
}
})
front: TplParentData[][]
问题:如何在这个地方使用“dto”类?