是否有办法删除Cake 3中的某些特定关联数据?
例如,在一个博客示例中,我想从post 3中删除“重要”标记吗?
发布于 2015-03-28 13:09:06
可以使用关联类中的方法删除一个实体和另一个实体之间的链接:
$post = ... // Fetch the post that contains the tag
$tag = $this->Posts->Tags->get($this->request->data('tag_to_delete'));
$this->Posts->Tags->unlink($post, [$tag]);https://stackoverflow.com/questions/29305310
复制相似问题