我试图在Symfony 3中通过SwiftMailer发送一封电子邮件。我正在阅读该教程:http://tutorial.symblog.co.uk/docs/validators-and-forms.html#sending-the-email我已经在#34;中遇到了问题。在控制器中创建表单" :"尝试调用名为" getRequest"的未定义方法。 class" AppBundle \ Controller \ DefaultController"。 "
我在src / AppBundle / DeffaultController中的contactAction():
/**
* @Route("/contact"), name="cont")
*/
public function contactAction()
{
$enquiry = new Enquiry();
$form = $this->createForm(EnquiryType::class, $enquiry);
$request = $this->getRequest();
if ($request->getMethod() == 'POST') {
$form->bindRequest($request);
if ($form->isValid()) {
// Perform some action, such as sending an email
// Redirect - This is important to prevent users re-posting
// the form if they refresh the page
return $this->redirect($this->generateUrl('app_default_contact'));
}
}
return $this->render(':default:contact.html.twig', array(
'form' => $form->createView()
));
}
请帮忙!
答案 0 :(得分:6)
getRequest
是Symfony\Bundle\FrameworkBundle\Controller\Controller
基类的一种方法。它自版本2.4以来已被弃用,并且已在3.0中删除。
要在控制器中获取它,只需将其添加为参数并使用Request类对其进行类型提示:
use Symfony\Component\HttpFoundation\Request;
public function contactAction(Request $request)
{
// ...
文档here。
答案 1 :(得分:1)
在symfony-3及更高版本之后,不推荐使用函数getRequest()。的Symfony \捆绑\ FrameworkBundle \控制器\控制器;仍在当前(4.03)版本中使用和维护。 github.com/symfony/framework-bundle
获取请求:
$request = $this->container->get('request_stack')->getCurrentRequest();
答案 2 :(得分:0)
代替getRequest
使用$request
....