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.
我有一个内容模型和一个评论模型。在插入评论时,我正在使用 cakephp(belongsTo 关系)的 counterCache 功能更新内容表中的 comment_count,但那时它也在更新我不想要的内容表中的修改日期。我该怎么做 ?
为该计数和更新创建一个自定义方法,并在您的评论模型的 afterSave() 中调用它,当您将新计数保存到关联表时,请确保
$data['Item']['modified'] = false;
修改设置为假。