cakephp-3.0 – 通过id Cakephp3删除多个实体

前端之家收集整理的这篇文章主要介绍了cakephp-3.0 – 通过id Cakephp3删除多个实体前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有更有效的方法通过id删除多个实体
$data = $this->request->data ['missing_lexicon_id'];
foreach ( $data as $id ) {
    $missingLexicon = $this->MissingLexicons->get ( $id );
    $this->MissingLexicons->delete ( $missingLexicon )
}
这应该工作
$this->MissingLexicons->deleteAll(['MissingLexicons.column IN' => $keys]);

其中$keys是一个包含要删除的ID的数组.

原文链接:https://www.f2er.com/php/133959.html

猜你在找的PHP相关文章