OKみんな、私には別の方法があります。それはより複雑で、特定の場合にのみです。
私の場合:
フォームがあり、送信後、APIサーバーにデータを投稿します。また、APIサーバーからもエラーが発生しました。
APIサーバーのエラー形式は次のとおりです。
array(
'message' => 'Invalid postal code',
'propertyPath' => 'businessAdress.postalCode',
)
私の目標は、柔軟なソリューションを取得することです。対応するフィールドのエラーを設定しましょう。
$vm = new ViolationMapper();
$error['propertyPath'] = 'children['. str_replace('.', '].children[', $error['propertyPath']) .']';
$constraint = new ConstraintViolation(
$error['message'], $error['message'], array(), '', $error['propertyPath'], null
);
$vm->mapViolation($constraint, $form);
それでおしまい!
注意! addError()
メソッドはerror_mappingオプションをバイパスします。
私のフォーム(会社のフォームに埋め込まれた住所フォーム):
会社
<?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;
}
}
住所
<?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;
}
}