私は、もちろん、ドキュメントの最後はこれで終了し、その後まし3.カスタムバリデータ制約3
symfonyにおいてカスタムバリデータ制約を作成しようとしています:
#AppBundle\Validator\Constraint\Device.php
namespace AppBundle\Validator\Constraint;
/**
* @Annotation
*/
class Device extends \Symfony\Component\Validator\Constraint
{
public $message = 'Device "%device%" is not valid';
public $shortMessage = 'Device ID is too short';
public $chunkMessage = 'Device ID doesn\'t have a correct number of parts';
}
制約
#AppBundle\Validator\DeviceValidator.php
namespace AppBundle\Validator;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
class DeviceValidator extends ConstraintValidator
{
public function validate($value, Constraint $constraint) : void
{
if (!$myconstraint) {
//A lot of code here
$this->context->buildViolation($constraint->shortMessage)->addViolation();
}
}
}
とにformType
#AppBundle\Form\Type\LoginType.php
namespace AppBundle\Form\Type;
use AppBundle\Validator\Constraint\Device;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Validator\Constraints\Length;
class LoginType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('username', TextType::class, ['required' => true, 'constraints' => [new Length(['min' => 3, 'minMessage' => 'Username is too short'])]])
->add('password', TextType::class, ['required' => true, 'constraints' => [new Length(['min' => 3, 'minMessage' => 'Password is too short'])]])
->add('device', TextType::class, ['required' => true, 'constraints' => [new Device()]]);
}
}
フォームは次のように作成されます。
$loginForm = Forms::createFormFactoryBuilder()->addExtension(new HttpFoundationExtension())->getFormFactory()->create(LoginType::class);
しかし、何でも私は、私はこの応答得た:
{ "コード":500、 "メッセージ": "オプション\" 制約を\" 存在しない。 \ "複合\"、\ "データ\"、\ "データクラス\"などの定義されたオプションは、\ "アクション\"、\ "attr \"、\ "auto_initialize \"、\ "ブロック名\ 「無効」、「空データ」、「エラーバブル」、「継承データ」、「ラベル」、「ラベル」、「ラベルフォーマット」、「マップされた」、 \ "メソッド\"、\ "post_max_size_messageの\"、\ "property_path \"、\ "必要\"、\ "translation_domain \"、\ "\トリム" \ "upload_max_size_messageの\"。」 }
、ドキュメントによると«制約»私はそれを置くと、symfonyはここで泣いている理由私は本当に知らないところ許可されている。
任意のアイデアは? どうもありがとうございました。
"このオプション(制約)は、FormTypeValidatorExtensionフォーム拡張に追加されています。 http://symfony.com/doc/current/reference/forms/types/form.html#constraints – Cerad