symfony2如何判断登录状态,不可能每个方法都获取session判断吧

我这样写回报错,不知道你们怎么判断的

<?php

namespace Acme\DemoBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;

use Symfony\Component\HttpFoundation\Response;

class CommonController extends Controller{

function __construct(){

$session = $this->getRequest()->getSession();

$session->set("test", "test");

echo $session->get('test');

}

/**

* @Route("/test")

*/

public function indexAction(){

return new Response("hello test");

}

}


weibo_木木彡615_03308630
浏览 2922回答 3
3回答

梦是蓝的

支持楼上的

wanka

写一个BaseController,在BaseController判断,然后继承这个控制器呀
打开App,查看更多内容
随时随地看视频慕课网APP