How to Change the Action and Method of a Form
Warning: You are browsing the documentation for Symfony 3.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
By default, a form will be submitted via an HTTP POST request to the same URL under which the form was rendered. Sometimes you want to change these parameters. You can do so in a few different ways.
If you use the FormBuilder to build your
form, you can use setAction()
and setMethod()
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
// AppBundle/Controller/DefaultController.php
namespace AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\Form\Extension\Core\Type\DateType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
class DefaultController extends Controller
{
public function newAction()
{
// ...
$form = $this->createFormBuilder($task)
->setAction($this->generateUrl('target_route'))
->setMethod('GET')
->add('task', TextType::class)
->add('dueDate', DateType::class)
->add('save', SubmitType::class)
->getForm();
// ...
}
}
Note
This example assumes that you've created a route called target_route
that points to the controller that processes the form.
When using a form type class, you can pass the action and method as form options:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// AppBundle/Controller/DefaultController.php
namespace AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use AppBundle\Form\TaskType;
class DefaultController extends Controller
{
public function newAction()
{
// ...
$form = $this->createForm(TaskType::class, $task, [
'action' => $this->generateUrl('target_route'),
'method' => 'GET',
]);
// ...
}
}
Finally, you can override the action and method in the template by passing them
to the form()
or the form_start()
helper functions:
1 2
{# app/Resources/views/default/new.html.twig #}
{{ form_start(form, {'action': path('target_route'), 'method': 'GET'}) }}
Note
If the form's method is not GET or POST, but PUT, PATCH or DELETE, Symfony
will insert a hidden field with the name _method
that stores this method.
The form will be submitted in a normal POST request, but Symfony's router
is capable of detecting the _method
parameter and will interpret it as
a PUT, PATCH or DELETE request. See the Framework Configuration Reference (FrameworkBundle)
option.