我使用cakephp開發了一個網站。但響應時間太慢。所以,我想實現胖模型和瘦身控制器。模型中的CakePHP函數
但我在控制器調用fashionpage功能當非對象
上得到
呼叫一個成員函數fashionpage()。
我有家庭模式(關係:家庭的hasMany車)
我的控制器:
public function fashionlist() { $user = $this->Auth->user('id'); $counter = $this->Home->fashionpage($user); $this->set(compact('user', 'counter')); }
我的模型:
public function fashionpage($user = null) { return $this->Home->Cart->find('count', array('conditions'=> array('conditions'=>array('User.id'=>$user)))); }
誰能請幫助我。
fashionpage函數是在主頁模型或車模型? – arilia
in home model @arilia – dancingAngel
和fashionlist函數在HomesController中? – arilia