0

ZFアプリケーションがあります。bootstrap.phpで、アプリケーションのルートを定義しました。これで、どのルートとも一致しないURLをアドレスバーに入力すると、致命的なエラーが発生します。私はそれを望んでいません、私はただ'ページが見つかりません'エラーを表示したいだけです。エラーコントローラーにアクセスする代わりに、アプリケーションが致命的なエラーをスローするのはなぜですか?

これは私のルートがどのように見えるかです:

$router->addRoute('page1',
        new Zend_Controller_Router_Route_Static('page1', array(
            'controller' => 'mycontroller',
            'action' => 'index',
            'id' => '2626'
        ))
    );

たとえば、/ page2を参照すると、致命的なエラーが発生します。これは、とにかく'mycontroller'に移動し、そのコントローラーで実行しようとしていることを実行しようとするためです。しかし、私はそれをそこに行きたくありません。

返信ありがとうございます。

4

1 に答える 1

1

ErrorControllerは次のようになります。

class ErrorController extends Zend_Controller_Action {

  public function errorAction() {
    $errors = $this->_getParam('error_handler');

    if (!$errors || !$errors instanceof ArrayObject) {
      $this->view->message = 'You have reached the error page';
      return;
    }

    switch ($errors->type) {
      case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ROUTE:
      case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER:
      case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:
        // 404 error -- controller or action not found
        $this->getResponse()->setHttpResponseCode(404);
        $priority = Zend_Log::NOTICE;
        $this->view->error_code = $this->getResponse()->getHttpResponseCode();
        $this->view->message = "Page Not Found";
        $this->renderScript('error/error_404.phtml');
        break;
      default:
        // application error
        print_r($this->getResponse());
        $this->getResponse()->setHttpResponseCode(500);
        $priority = Zend_Log::CRIT;
        $this->view->error_code = $this->getResponse()->getHttpResponseCode();
        $this->view->message = 'Application error';
        if ($log = $this->getLog()) {
        $log->log($this->view->message, $priority, $errors->exception);
        $log->log('Request Parameters', $priority, $errors->request->getParams());
        $this->renderScript('error/error_500.phtml');
        }

    // conditionally display exceptions
        if ($this->getInvokeArg('displayExceptions') == true) {
                $this->view->exception = $errors->exception;
        }

        $this->view->request = $errors->request;
        $this->view->error_code = $this->getResponse()->getHttpResponseCode();
        $this->renderScript('error/error_500.phtml');
        break;
    }

    // Log exception, if logger available
    if ($log = $this->getLog()) {
      $log->log($this->view->message, $priority, $errors->exception);
      $log->log('Request Parameters', $priority, $errors->request->getParams());
    }

    // conditionally display exceptions
    if ($this->getInvokeArg('displayExceptions') == true) {
      $this->view->exception = $errors->exception;
    }

    $this->view->request = $errors->request;
  }

  public function getLog() {
    $bootstrap = $this->getInvokeArg('bootstrap');
    if (!$bootstrap->hasResource('Log')) {
      return false;
    }
    $log = $bootstrap->getResource('Log');
    return $log;
  }

}

ふぅ!$ this-> getResponse()-> HttpResponseCode()を使用して、任意の HTTPステータス応答コードを定義できます。

また、ベストプラクティス(引用符で囲んで)に従って、LOGSが必要であることを確認します。!

質問?:)

于 2012-08-30T06:31:02.917 に答える