为自定义 HTML 元素设置 symfony 验证器
我已经创建了自定义 HTML 表单元素来获取用户的输入,并且我没有使用 Symfony 表单。我知道它让我远离 Symfony 表单验证系统,有没有办法使用自定义 HTML 元素并在该元素上获得 Symfony 表单验证
。 我使用过 Symfony 表单,并且知道如何使用验证器,但这次我使用自定义 HTML 表单,因为 Symfony 表单没有给我那种灵活性。
I have created custom HTML form elements to take inputs from user, and i am not using the Symfony Form. i know that it keep me out of Symfony form validation system, Is there any way to use custom HTML element and get Symfony Form validation on that elements
.
I have used Symfony forms and i know how to use validators, but this time i am using custom HTML forms as Symfony form was not giving me that flexibility.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。 《More on Symfony》一书有一个 编写自己的验证器指南。如果您能说出您希望验证器实现什么目标,我也许可以为您提供一些有关如何实现它的指导。
您不需要使用表单框架来使用验证器框架,但我确实想知道为什么您选择不...
Yes. The More on Symfony book has a guide to writing your own validator. If you can say what you want the validator to achieve, I might be able to give you some pointers about how to implement it.
You do not need to use the form framework to use the validator framework, but I do wonder why you chose not to...