?? flea_exception_missingaction.php.svn-base
字號:
<?phprequire(dirname(__FILE__) . '/../_common/header.php');/* @var $ex FLEA_Exception_MissingAction */?><h1>請求的控制器 <strong><?php echo $ex->controllerName; ?></strong> 的動作<strong><?php echo $ex->actionName; ?></strong> 沒有定義</h1><div class="error"><h2>詳細錯誤原因:</h2>您請求訪問控制器 <strong><?php echo $ex->controllerName; ?></strong>的動作 <strong><?php echo $ex->actionName; ?></strong>。<br />但該控制器的類定義文件<p><strong><?php __error_filelink($ex->controllerClassFilename); ?></strong></p>中沒有定義動作 <strong><?php echo $ex->actionName; ?></strong>對應的方法 <strong><?php echo $ex->actionMethod; ?></strong>。</div><p><?php dump($ex->arguments, '調用參數'); ?></p><div class="tip"><h2>解決:</h2>請檢查文件<p><strong><?php __error_filelink($ex->controllerClassFilename); ?></strong></p>中定義的 <strong><?php echo $ex->controllerClass; ?></strong> 類是否編寫了<strong><?php echo $ex->actionMethod; ?></strong> 方法。</div><?php$code = <<<EOT<?php// {$ex->controllerClassFilename}class {$ex->controllerClass} extends FLEA_Controller_Action{ function {$ex->actionMethod}() { }}EOT;__error_highlight_string($code);?><div class="track"><?php __error_dump_trace($ex); ?></div>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -