Symfony2:无法加载类型“MyType”
我正在尝试创建一个新的字段类型并将其添加到 Symfony 2 中的表单类中。
我创建了一个名为 MyType
的类(用于测试目的),当我想将其添加到表单类时我收到错误:
无法加载类型“MyType”。
我想我必须告诉 Symfony 加载该类型,但我不知道如何!
I am trying to create a new field type and add it to a form class in Symfony 2.
I have created a class called MyType
(for testing purpose) and when I want to add it to a form class I get the error:
Could not load type "MyType".
I guess I must tell Symfony to load that type, but I don't know how!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已在 config.yml 的服务部分中注册了表单,
然后您可以使用名称“my_type_form”从控制器调用它。
You have register your form in the section services of your config.yml
Then you can call it from your controller with the name "my_type_form".