这是我的create函数:
async createDocument(createDocumentDto: CreateDocumentDto) {
const request = await Document.build(<any>createDocumentDto);
return await request.save();
}
字符串
现在我试图删除类型CreateDocumentDto[]的数组,但我没有从文档中获得类似'bulkDelete'的内容
我试着去做:
const entities = await this.AnswersRepository.findAll(<any>deleteAnswerDto);
if (!entities) {
throw new NotFoundException(`Something went wrong, no changes applied!`);
}
return this.AnswersRepository.remove(entities);
型
但我得到了这个错误:“类型”typeof Answer“上不存在属性”remove "
我找不到解决的办法。会感激帮助:)。
1条答案
按热度按时间g0czyy6m1#
在你的NestJS应用中,不要忘记配置路由并适当地处理请求。使用Sequelize和NestJS,这段代码解释了如何批量删除文档。
在DocumentService中:
字符串
在DocumentController中:
型