0

在我的 Order 模型中,我有以下方法来计算 Order 的 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 的视图操作中,我正在调用此方法并设置要发送到视图的值。

在我的订单索引视图中,我看到烘焙字段的分页器链接是这样的。

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

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

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

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;
}

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

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

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

使用解决方案更新 2

为了解决排序问题,我在 Order 控制器中实现了以下分页方法

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' => '\'\''
);
4

1 回答 1

0

读这个。数组的第一个键是 find 方法。

public $paginate = array(
    'popular'
);

由于第 0 个索引难以管理,因此在 2.3 中添加了 findType 选项:

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

此外,您应该在 2.3 中使用 $this->Paginator->settings 而不是分页,看起来本书示例还不是最新的。

于 2013-08-19T22:15:59.837 回答