我对环回很新。我想找到记录及其相关的相关记录。所以我使用include和find在哪里,但它无法正常工作。
这是我的示例代码:
Profile.find({{where: {and : [{xxx : req.param('xx')},{yyy : req.param('yyyy')}]}},{include: ['zzz']}}, function (err, instance) {
if(err){
console.log('err');
return ctx.res.send({notValid: "error"});
}
if(instance.length==0){
return ctx.res.send({notValid: "error"});
}
ctx.res.send({user: instance});
});
答案 0 :(得分:0)
我得到了解决方案。
Profile.find({where: {and : [{xxx : req.param('xxx')},{yyy : req.param('yyy')}]}, include: ['zzz']}, function (err, instance) {
if(err){
console.log('err');
return ctx.res.send({notValid: "error"});
}
if(instance.length==0){
return ctx.res.send({notValid: "error"});
}
ctx.res.send({user: instance});
});