How to Use the submit() Function to Handle Form Submissions
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).
Handle the form submission with the handleRequest()
method:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
use Symfony\Component\HttpFoundation\Request;
// ...
public function newAction(Request $request)
{
$form = $this->createFormBuilder()
// ...
->getForm();
$form->handleRequest($request);
if ($form->isSubmitted() && $form->isValid()) {
// perform some action...
return $this->redirectToRoute('task_success');
}
return $this->render('product/new.html.twig', [
'form' => $form->createView(),
]);
}
Tip
To see more about this method, read Forms.
Calling Form::submit() manually
In some cases, you want better control over when exactly your form is submitted and what data is passed to it. Instead of using the handleRequest() method, pass the submitted data directly to submit():
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
use Symfony\Component\HttpFoundation\Request;
// ...
public function newAction(Request $request)
{
$form = $this->createFormBuilder()
// ...
->getForm();
if ($request->isMethod('POST')) {
$form->submit($request->request->get($form->getName()));
if ($form->isSubmitted() && $form->isValid()) {
// perform some action...
return $this->redirectToRoute('task_success');
}
}
return $this->render('product/new.html.twig', [
'form' => $form->createView(),
]);
}
Tip
Forms consisting of nested fields expect an array in submit(). You can also submit individual fields by calling submit() directly on the field:
1
$form->get('firstName')->submit('Fabien');
Tip
When submitting a form via a "PATCH" request, you may want to update only a few
submitted fields. To achieve this, you may pass an optional second boolean
argument to submit()
. Passing false
will remove any missing fields
within the form object. Otherwise, the missing fields will be set to null
.
Caution
When the second parameter $clearMissing
is false
, like with the
"PATCH" method, the validation will only apply to the submitted fields. If
you need to validate all the underlying data, add the required fields
manually so that they are validated:
1 2
// 'email' and 'username' are added manually to force their validation
$form->submit(array_merge(['email' => null, 'username' => null], $request->request->all()), false);