$ security的默认值应该是多少?

时间:2015-04-14 19:43:24

标签: php symfony symfony-security symfony-2.7

我正在研究这种方法:

public function loginAction(Request $request, Security $security)
{
    $session = $request->getSession();
    $session->remove('admin_project_id');

    if ($security->has(Security::AUTHENTICATION_ERROR)) {
        $error = $request->attributes->get(Security::AUTHENTICATION_ERROR);
    } else {
        $error = $session->get(Security::AUTHENTICATION_ERROR);
        $session->remove(Security::AUTHENTICATION_ERROR);
    }

    return $this->render('PDOneBundle:Login:index.html.twig',
        array_merge($this->defaultViewParams(), array(
            'last_username' => $session->get(Security::LAST_USERNAME),
            'error'         => $error,
            'include_sidebar' => false,
            )
        )
    );
}

但是当它被调用时我得到了这个错误:

  

控制器   “GroupDCA \ PDOneBundle \控制器\的LoginController ::则loginAction()”   要求您为“$ security”参数提供值   (因为没有默认值或因为有非可选项   这之后的争论)。

该参数的默认值是什么?我正在使用的方式是对吗?

1 个答案:

答案 0 :(得分:3)

首先,您不需要传递$ security作为参数。您使用安全性的行,您实际上必须访问$ request并查看其属性以查找错误。

其次,我看到你将问题标记为 symfony 2.7 ,从版本@ 2.6开始,引入了一种新的,简短的登录方式:

public function loginAction(Request $request)
{
    $authenticationUtils = $this->get('security.authentication_utils');

    // get the login error if there is one
    $error = $authenticationUtils->getLastAuthenticationError();

    // last username entered by the user
    $lastUsername = $authenticationUtils->getLastUsername();

    return $this->render(
        'security/login.html.twig',
        array(
            // last username entered by the user
            'last_username' => $lastUsername,
            'error'         => $error,
        )
    );
}

您可以从这段代码的位置阅读更多内容:How to Build a Traditional Login Form