-
获取服务
$this->get($serviceId);
-
重定向
$this->redirectToRoute($routeName, $parameters, $status = 302); // add anchor增加锚点, symfony > 3.2 $this->redirectToRoute($routeName, ['_fragment' => 'anchor2']); //$this->redirect($this->generateUrl($routeName, array('id' => $id)) . '#anchor7');
-
生成路由的url
$this->generateUrl($routeName, $parameters, $referenceType);
-
返回一个json response
$this->json($data, $status = 200, $headers = array(), $context = array());
-
添加一个flash message
$this->addFlash($type, $message);
-
判断是否授权进入某个方法
$this->isGranted('ROLE_ADMIN');
-
判断用户是否授权,否,抛出异常
$this->denyAccessUnlessGranted('ROLE_EDIT', $item, 'You cannot edit this item.');
-
手动判断 CSRF token是否合法
$this->isCsrfTokenValid('token_id', $token);
-
把请求转发到其他控制器和方法
$this->forward('GregwarCaptchaBundle:Captcha:generateCaptcha', ['key' => $key]); //forward($controller, array $path = array(), array $query = array())
PS: 第二个参数为route上占位符参数,第三个为其他额外的参数
-
文件下载(symfony >= 3.2)
$this->file();
-
读取配置参数
$this->getParameter('kernel.root_dir');