如何使用带有sequelize属性的include?
知道如何将sequelize与include属性一起使用(当您只需要包含include表的特定字段时)?
目前,我有这个(但不能按预期工作):
var attributes = ['id', 'name', 'bar.version', ['bar.last_modified', 'changed']];foo.findAll({
where : where,
attributes : attributes,
include : [bar]
}).success(function (result) { ...
回答:
这样的事情应该工作
foo.findAll({ where : where,
attributes : attributes,
include : [{ model: bar, attributes: attributes}]
}).success(function (result) {
以上是 如何使用带有sequelize属性的include? 的全部内容, 来源链接: utcz.com/qa/435190.html