Sprawdzam walidację w moim kontrolerze. I chcę dodać błąd do konkretnego elementu mojego formularza w przypadku niepowodzenia. Mój formularz:
use Symfony\Component\Form\FormError;
// ...
$config = new Config();
$form = $this->createFormBuilder($config)
->add('googleMapKey', 'text', array('label' => 'Google Map key'))
->add('locationRadius', 'text', array('label' => 'Location radius (km)'))
->getForm();
// ...
$form->addError(new FormError('error message'));
addError () dodaje błąd do formularza, a nie do elementu. Jak mogę dodać błąd do elementu locationRadius?
php
validation
symfony
symfony-forms
Alex Pliutau
źródło
źródło
$this->get('translator')->trans('error message')
form_errors(form)
w moją gałązkę.form_erros(form.my_field_name)
OK, mam inny sposób. Jest to bardziej złożone i tylko w określonych przypadkach.
Mój przypadek:
Mam formularz i po przesłaniu przesyłam dane na serwer API. Oraz błędy, które otrzymałem z serwera API.
Format błędu serwera API to:
array( 'message' => 'Invalid postal code', 'propertyPath' => 'businessAdress.postalCode', )
Moim celem jest uzyskanie elastycznego rozwiązania. Pozwala ustawić błąd dla odpowiedniego pola.
$vm = new ViolationMapper(); // Format should be: children[businessAddress].children[postalCode] $error['propertyPath'] = 'children['. str_replace('.', '].children[', $error['propertyPath']) .']'; // Convert error to violation. $constraint = new ConstraintViolation( $error['message'], $error['message'], array(), '', $error['propertyPath'], null ); $vm->mapViolation($constraint, $form);
Otóż to!
UWAGA!
addError()
metoda pomija opcję error_mapping .Mój formularz (formularz adresowy osadzony w formularzu firmy):
Firma
<?php namespace Acme\DemoBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Validator\Constraints; class Company extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('companyName', 'text', array( 'label' => 'Company name', 'constraints' => array( new Constraints\NotBlank() ), ) ) ->add('businessAddress', new Address(), array( 'label' => 'Business address', ) ) ->add('update', 'submit', array( 'label' => 'Update', ) ) ; } public function getName() { return null; } }
Adres
<?php namespace Acme\DemoBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Validator\Constraints; class Address extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder // ... ->add('postalCode', 'text', array( 'label' => 'Postal code', 'constraints' => array( new Constraints\NotBlank() ), ) ) ->add('town', 'text', array( 'label' => 'Town', 'constraints' => array( new Constraints\NotBlank() ), ) ) ->add('country', 'choice', array( 'label' => 'Country', 'choices' => $this->getCountries(), 'empty_value' => 'Select...', 'constraints' => array( new Constraints\NotBlank() ), ) ) ; } public function getName() { return null; } }
źródło