如何使用Symfony2模拟404错误?

时间:2012-12-31 16:28:54

标签: symfony symfony-2.1

所以我正在寻找一种模拟404错误的方法,我试过这个:

throw $this->createNotFoundException();  

和这个

return new Response("",404);

但没有一个可行。

1 个答案:

答案 0 :(得分:81)

您可以在Symfony2文档中找到解决方案:

http://symfony.com/doc/2.0/book/controller.html

管理错误和404页

public function indexAction()
{
    // retrieve the object from database
    $product = ...;
    if (!$product) {
        throw $this->createNotFoundException('The product does not exist');
    }

    return $this->render(...);
}

文档中有一个简短的信息:

“createNotFoundException()方法创建一个特殊的 NotFoundHttpException 对象,最终在Symfony中触发404 HTTP响应。”

use Symfony\Component\HttpKernel\Exception\NotFoundHttpException

在我的剧本中,我做到了这样:

use Symfony\Component\HttpKernel\Exception\NotFoundHttpException

/**
 * @Route("/{urlSlug}", name="test_member")
 * @Template()
 */
public function showAction($urlSlug) {
    $test = $this->getDoctrine()->.....

    if(!$test) {
        throw new NotFoundHttpException('Sorry not existing!');
    }

    return array(
        'test' => $test
    );
}