基于模型方法的Cakephp分页

时间:2013-08-19 20:34:54

标签: php cakephp pagination cakephp-2.3

在我的订单模型中,我有以下方法来汇总订单的OrderItems的总价

public function getTotalPrice($id = null) {
    if (!$this->exists($id)) {
        throw new NotFoundException(__('Invalid order'));
    }
    $total = $this->OrderItem->find('first', array(
        'conditions' => 'OrderItem.order_id = '.$id,
        'fields' => 'SUM('.$this->OrderItem->virtualFields['total_price'].') AS total',
        'group' => 'OrderItem.order_id'

    ));
    return $total[0]['total'];
}

在我的OrderController的视图操作中,我调用此方法并设置要发送到视图的值。

在我的Order的索引视图中,我看到Paginator链接就像烘焙字段一样。

<th><?php echo $this->Paginator->sort('user_id'); ?></th>

但据我了解,要排序的参数需要是模型上的实际字段。有没有办法使用这个Paginator助手用我的自定义方法分页?或者有没有办法让我的方法在我的订单模型中用作虚拟字段?

更新 我在订单模型上添加了以下自定义查找方法

public $findMethods = array('withTotal' =>  true);

protected function _findWithTotal($state, $query, $results = array()) {
    if ($state === 'before') {
        // make sure to fetch OrderItems
        if(!isset($query['contain'])) {
            $query['contain'] = 'OrderItem';
        } else if (is_array($query['contain'])) {
            if(!in_array('OrderItem', $query['contain'])) {
                array_push($query['contain'], 'OrderItem');
            }
        } else if(is_string($query['contain']) && strpos($query['contain'], 'OrderItem') === false) {
            $query['contain'] = array($query['contain'], 'OrderItem');
        }
        return $query;
    } else if ($state === 'after') {
        if(count($results) > 0) {
            foreach($results as &$order) {
                if(isset($order['OrderItem'])) {
                    $total = 0;
                    foreach($order['OrderItem'] as $orderItem) {
                        $total += $orderItem['total_price'];
                    }
                    $order['Order']['order_total'] = $total;
                }
            }
        }
    }
    return $results;
}

然后我将以下内容添加到Order的索引视图

$this->paginate = array(
    'findType' => 'withTotal'
);

在致电$this->paginate('Order')之前。现在,我可以在视图中读取$order['Order']['order_total']的值,但是当我点击$this->Paginator->sort('order_total')链接时,它会更新网址中的参数,但不会对行进行排序。

使用解决方案更新2

为了解决排序问题,我在订单控制器中实现了以下paginate方法

public function paginate($conditions, $fields, $order, $limit, $page = 1, $recursive = null, $extra = array()) {
    // get orders with total
    $contain = $extra['contain'];
    $orders = $this->find('withTotal', compact('conditions', 'fields', 'order', 'limit', 'page', 'recursive', 'group', 'contain'));
    // if sorting by order_total
    if(is_array($order) && array_key_exists('order_total', $order)) {
        $sortDirection = $order['order_total'];
        uasort($orders, function($a, $b) use($sortDirection) {
            if($a['Order']['order_total'] == $b['Order']['order_total']) {
                return 0;
            } else if($sortDirection == "asc") {
                return ($a['Order']['order_total'] > $b['Order']['order_total']) ? -1 : 1;
            } else if($sortDirection == "desc") {
                return ($a['Order']['order_total'] < $b['Order']['order_total']) ? -1 : 1;
            }
        });
    }
    return $orders;
}

我还必须添加一个名为order_total的空虚拟字段,以便通过分页排序验证

public $virtualFields = array( 
    'order_total' => '\'\''
);

1 个答案:

答案 0 :(得分:0)

Read this。数组的第一个键是find方法。

public $paginate = array(
    'popular'
);
  

由于第0个索引难以管理,因此在2.3中使用findType选项   补充说:

public $paginate = array(
    'findType' => 'popular'
);

也可以使用2.3中的$ this-&gt; Paginator-&gt;设置来代替分页,看起来这本书的例子还不是最新的。