在我的情況下,錯誤是:
Fatal error: Uncaught Error: Class 'ErrorHandler' not found in C:\[path]\core\cake\libs\object.php on line 211
(!) Error: Class 'ErrorHandler' not found in C:\[path]\core\cake\libs\object.php on line 211
試圖訪問http://localhost/user_accounts/index
我已經在應用程序創建視圖時錯誤是發生在我身上\意見\ user_accounts \ index.ctp,含以下內容:
<div>
Text from div
</div>
我已經創建了收藏克控制器以及在應用\控制器\ user_accounts_controller.php:
<?php
class UserAccountsController extends AppController {
public function index() {
// Render the view in /views/user_accounts/index.ctp
$this->render();
}
}
?>
由於我不相關聯的模型到該控制器,我是缺少這樣的:var $uses = array();
。如果錯誤更加明確,它會爲我節省時間,比如「您沒有與此控制器關聯的模型」。
此修復程序是:
<?php
class UserAccountsController extends AppController {
// Use this controller without a need for a corresponding Model file.
var $uses = array();
public function index() {
// Render the view in /views/user_accounts/index.ctp
$this->render();
}
}
?>