CakePHP 3 删除特定关联数据

CakePHP 3 delete particular associated data

有什么方法可以删除 Cake 3 中的某些特定关联数据吗?

例如,在博客示例中,我想从 post 3?

中删除标签 "important"

您可以使用关联 class 中的方法删除一个实体与另一个实体之间的 link:

$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]);