我在CakePHP安裝創造了NamesController.php上和我創建了一個搜索功能:CakePHP的 - 調用一個成員函數搜索()非對象
public function search($api_key = null,$domain = null,$keywords = null,$country = null,$type = null) {
$result = $this->Mails->search($keywords,$country,$type);
return $result;
}
但這返回我一個錯誤:
Call to a member function search() on a non-object
PS:MailsController.php還包含一個搜索功能,效果很好。
爲什麼這讓我知道這個錯誤?我究竟在做什麼錯了?
提前感謝你!
你確認了'郵件存在並且是一個對象嗎?後續代碼var_dump($本);並確保有一個「郵件」成員。 –