我刚开始使用bookshelfJS,但我无法找到关于如何执行以下操作的明确答案。
考虑我有以下表格:
product
--------
id
product_account
--------
id
product_id
account_id
collection
--------
id
collection_product_account
--------
collection_id
product_account_id
集合中可能有很多产品。
我想做以下
SELECT pa.*, p.* FROM product_account pa
INNER JOIN collection_product_account cp ON cp.product_account_id = pa.id
INNER JOIN product p ON p.product_account_id = pa.product_id
WHERE cp.collection_id = ?
我如何传递集合ID,并返回product_accounts的完整列表,然后从中获取产品?
作为参考,如果我使用product_account_id
查询,我会这样做new productAccountModel()
.where({account_id: 1})
.fetchAll({withRelated: ['product']})
.then(function(productAccounts)
{
return productAccounts.toJSON());
});
答案 0 :(得分:3)
我假设这是你的模特:
var Product = bookshelf.Model.extend({
tableName: 'product',
collections: function() {
return this.belongsToMany(Collection);
}
});
var Collection = bookshelf.Model.extend({
tableName: 'collection',
products: function() {
return this.belongsToMany(Product);
}
});
然后你必须稍微切换一下逻辑。说出new Product()
后,您无法通过相关表格进行查询。但是你可以像这样切换它:
new Collection({id: 1}).fetch({
withRelated: ['products']
}).then(function(result) {
res.json(result.toJSON());
});
这有帮助吗?
<强>更新强>
如果有必要,您还可以附加您所附模型的关系,即:
new Collection({id: 1}).fetch({
withRelated: ['products.company']
}).then(function(result) {
res.json(result.toJSON());
});