我正在使用sails.js,其find()
函数不再返回关联。
过去我用过:
XYZ.find()
.populate('field')
.exec(function(err, results){})
现在我使用:
await find()
如何在populate
的新版本中设置find()
?
答案 0 :(得分:1)
Sails 1.0中的用法如下:
var pets = await Pet.find()
.populate('leashes');
console.log(pets);
console.log(pets[0] && pets[0].leashes);