Shortcuts methods in Controller
1. 获取服务
$this->get($serviceId);
2. 重定向
$this->redirectToRoute($routeName, $parameters, $status = 302);
3. 生成路由的url
$this->generateUrl($routeName, $parameters, $referenceType);
4. 返回一个json response
$this->json($data, $status = 200, $headers = array(), $context = array());
5. 添加一个flash message
$this->addFlash($type, $message);
6. 判断是否受权进入某个方法
$this->isGranted('ROLE_ADMIN');
7. 判断用户是否受权,否,抛出异常
$this->denyAccessUnlessGranted('ROLE_EDIT', $item, 'You cannot edit this item.');
8. 手动判断 CSRF token是否合法
$this->isCsrfTokenValid('token_id', $token);
9. 把请求转发到其余控制器和方法
$this->forward('GregwarCaptchaBundle:Captcha:generateCaptcha', ['key' => $key]);
//forward($controller, array $path = array(), array $query = array())
PS: 第二个参数为route上占位符参数,第三个为其余额外的参数
10. 文件下载(symfony >= 3.2)
$this->file();
//简单用法示例
return $this->file($docPath, $saveName);
// 若是是pdf之类,直接显示而不是下载,须要设置第三个参数ResponseHeaderBag::DISPOSITION_INLINE
// 还能够直接接受一个File或者UploadedFile实例
//$samplePdf = new File('/sample.pdf');
//return $this->file($samplePdf);
11. 读取配置参数
$this->getParameter('kernel.root_dir');