如果cakephp 3中的contain为空或为null,如何从分页中删除主数组键

时间:2018-09-30 15:34:15

标签: cakephp-3.0 cakephp-3.x

如果包含不可用或为null,则必须在此处删除主分页数组键。我如何修改下面的代码在cakephp 3中做到这一点。 我尝试通过foreach循环删除,但分页计数显示错误。

    $this->paginate = [
        'contain' =>['PurchaseOrderProducts'=>function($p){
        return $p->where(['PurchaseOrderProducts.id IS NOT NULL']);
        }]];
     $pr_product = $this->paginate($this->PurchaseRequisitionProducts);

0 个答案:

没有答案