模型是:商店和产品,它们通过以下方式关联:
var $belongsTo = array( 'Store' => array( 'className' => 'Store','foreignKey' => 'store_id' )) var $hasMany = array( 'Product' => array( 'className' => 'Product','foreignKey' => 'store_id' ))
我想获得所有商店的清单以及他们拥有的产品数量.我应该如何修改电话:$this->存储 – >查找(‘all’,数组(< ..某些条件..>))以返回该类型的数据?
一种方法是在您的关联中使用Cake的内置
counterCache
选项.这可能是性能最高的选项,但它确实需要在表中添加一个字段.
在stores表中,添加一个名为product_count的INT字段
在您的产品模型中,将counterCache选项添加到您的关联中:
var $belongsTo = array( 'Store' => array( 'className' => 'Store','foreignKey' => 'store_id','counterCache' => true ));