我想选择一个帖子必须在我的“热门帖子”小部件上获得多少浏览量。为此,我使用我的控制器
public function menu() {
return $this->Post->find('all', array(
'limit' => 5,
'order' => array('Post.id' => 'desc'),
'conditions' => array('Post.hits >= 100'
)));
}
它工作得很好。现在我想将我的号码(100)更改为
Configure::read('top_views');
但我不知道该怎么做:/有人可以帮我吗?