我有一个可选字段parent
,它的数据类型是uuid
,有时这个字段可能是空的。
如果字段为空,如何执行获取数据请求?
uuid类型语法无效:“无效”
const current_file = await this.fileService.findOne({
relations: ['user', 'parent'],
where: {
name: file.originalname,
user: current_user.user_id,
parent: request.body.parent,
},
});
1条答案
按热度按时间kdfy810k1#
这样,当
parent
是null
时,您实际上通过||
操作符将密钥设置为undefined
。