如何在CakePHP中查看counterCache?

时间:2012-01-24 22:49:33

标签: cakephp-1.3

遵循手册:http://book.cakephp.org/1.2/view/816/counterCache-Cache-your-count

我的模型中有这个代码:

class Ticket extends AppModel {
   var $belongsTo = array(
      'TicketStatus' => array('counterCache' => true)
);

这来自我的视图/ index.ctp:

echo $ticket_count

但它错误而不是打印该字段的内容。我已经将ticket_count(INT)添加到我的票证表中。我错过了什么?

由于

莱曼

1 个答案:

答案 0 :(得分:0)

您是否设置了在视图中使用的$ pending变量?

$this->set(compact('pending'));

然后你看:

echo $pending['TicketStatus']['ticket_count'];