Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有嵌套模型结构
id parent_id counter name
如何使用自动计数器缓存
在关系定义中定义它。
<?php class YourModel extends AppModel { var $belongsTo = array( 'ParentModel' => array( 'foreignKey' => 'your_model_id', 'className' => 'ParentModel', 'counterCache' => 'counter' ) ) ); } ?>
其中“计数器”是表中包含计数的字段。