我有一个表格,我想在我的网站的几个页面中使用。 所以我在我的页面中调用了这样的方法:
{{ render(controller('ProjectApplicationBundle:Application:form')) }}
我有我的formAction方法:
public function formAction()
{
$form = $this->createForm($type,$obj);
if('POST' == $this->getRequest()->getMethod()){
$form->submit($this->getRequest());
if($form->isValid()){
//redirect to a page after the form
}
}
//render the form template ...
}
这不是我的代码,这只是一个例子。
所以我添加了创建发送表单的路线
project_application_form:
pattern: /form
defaults: { _controller: ProjectApplicationBundle:Application:form }
现在我的问题:)
1)我想使用网址阻止访问我的表单,只允许进行数据处理。
2)如果出现错误,页面不会重定向,因此表单显示时没有布局,所以我想在页面中显示包含错误的表单。
编辑:我可能有第二点的解决方案,但这不是很合适。 在我的参数中设置渲染路径并返回路径而不是渲染渲染表单。最后,我使用会话来解决错误。
我希望这对你来说很清楚,对不起我的英语。
答案 0 :(得分:1)
您必须确保处理表单的操作,并且只能通过POST
示例:
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
class RegisterController extends Controller
{
/**
* @Route("/register/process", name="process_form_register")
* @Method({"POST"})
*/
public function processAction(Request $request)
{
$form = $this->createFrom(new RegisterType());
$form->submit($request);
if($form->isValid()){
//redirect to a page after the form
}
}
}
如果您对路线使用yml
语法,那么它将会是:
process_form_register:
pattern: /register/process
defaults: { _controller: ...... }
requirements:
_method: POST
为你的2点开一个新问题,因为每个帖子只有一个问题而且这是另一个问题