Symfony2:无法加载类型“MyType”

发布于 2024-12-01 21:37:02 字数 205 浏览 0 评论 0原文

我正在尝试创建一个新的字段类型并将其添加到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命硬 2024-12-08 21:37:02

您已在 config.yml 的服务部分中注册了表单,

services:
   my_type_form:
      class: sf\MyTypeBundle\Form\MyType
      tags:
         -  { name: form.type }

然后您可以使用名称“my_type_form”从控制器调用它。

You have register your form in the section services of your config.yml

services:
   my_type_form:
      class: sf\MyTypeBundle\Form\MyType
      tags:
         -  { name: form.type }

Then you can call it from your controller with the name "my_type_form".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文