使用 Symfony 2.8 生成表单会引发Twig_Error_Runtime
自从Symfony的最后一个LTS版本在几天前(30.11.2015)发布以来,我开始使用它。不幸的是,我无法使用与Symfony 2.7.7中正常工作的相同代码生成具有写入操作的CRUD。
首先,我使用Linux Mint 17.2下创建一个新的Symfony项目:bash
symfony new tasks lts
新目录是在内部使用新的 Symfony 2.8.0 项目创建的。tasks
在 I 中创建数据库调整数据库凭据后:app/config/parameters.yml
app/console doctrine:database:create
并生成一个新的捆绑包:
app/console generate:bundle --namespace=Acme/TasksBundle --format=yml
然后,我创建一个新目录,并在其中放置两个模型文件。这些是:src/Acme/TasksBundle/Resources/config/doctrine
Task.orm.yml
Acme\TasksBundle\Entity\Task:
type: entity
repositoryClass: Acme\TasksBundle\Repository\TaskRepository
table: task
id:
id:
type: integer
generator: { strategy : AUTO }
fields:
description:
type: text
manyToMany:
tags:
targetEntity: Tag
inversedBy: tasks
cascade: [ "persist" ]
joinTable:
name: task_tag
joinColumns:
task_id:
referencedColumnName: id
inverseJoinColumns:
tag_id:
referencedColumnName: id
Tag.orm.yml
Acme\TasksBundle\Entity\Tag:
type: entity
repositoryClass: Acme\TasksBundle\Repository\TagRepository
table: tag
id:
id:
type: integer
generator: { strategy : AUTO }
fields:
name:
type: string
length: 50
manyToMany:
tasks:
targetEntity: Task
mappedBy: tags
数据库架构应如下所示:
+----------------+ +--------------+
| task | | task_tag | +---------+
+----------------+ +--------------+ | tag |
| id |<--->| task_id | +---------+
| description | | tag_id |<--->| id |
+----------------+ +--------------+ | name |
+---------+
现在我可以生成实体:
app/console generate:doctrine:entities AcmeTasksBundle
这工作正常,因此可以更新数据库:
app/console doctrine:schema:update --force
到目前为止,一切都还好。这些表位于数据库中。现在我想使用写入操作生成 CRUD:
app/console generate:doctrine:crud --entity=AcmeTasksBundle:Task --with-write --format=yml
确认几个问题后,它会生成CRUD并打印出来:
Generating the CRUD code: OK
然后抛出此错误:
[Twig_Error_Runtime]
Key "tags" for array with keys "id, description" does not exist in "form/FormType.php.twig" at line 29
将创建控制器,但不创建窗体。
生成不带写入选项的 CRUD 工作正常。相同的代码在Symfony 2.7.7中完美无缺。
我检查了版本之间文件的差异,以下是相关部分:form/FormType.php.twig
Symfony 2.7.7vendor/sensio/generator-bundle/Sensio/Bundle/GeneratorBundle/Resources/skeleton/form/FormType.php.twig
{%- if fields|length > 0 %}
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
{%- for field in fields %}
->add('{{ field }}')
{%- endfor %}
;
}
{% endif %}
Symfony 2.8.0vendor/sensio/generator-bundle/Resources/skeleton/form/FormType.php.twig
{%- if fields|length > 0 %}
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
{%- for field in fields -%}
{%- if fields_mapping[field]['type'] in ['date', 'time', 'datetime'] %}
->add('{{ field }}', '{{ fields_mapping[field]['type'] }}')
{%- else %}
->add('{{ field }}')
{%- endif -%}
{%- endfor %}
;
}
{% endif %}
正如我所看到的,for 循环中的 if 条件是发生错误的地方。(我假设表达式会导致问题,因为多对多字段()没有属性。fields_mapping[field]['type']
tag
type
我做错了什么?我该如何解决这个问题?非常感谢您的帮助。
编辑:同样的问题发生在Symfony 3.0.0。该文件自版本 2.8 起已更改。form/FormType.php.twig