没有水合作用的Symfony Form EntityType



我正在构建一个包含大量嵌套对象的网站。随着数据库的扩大,教义关联开始真正显现出来,缓慢但肯定的是。我遇到的最重要的问题之一是我需要创建下拉列表,以便用户可以关联其中一些实体。下面的代码是我用于生成表单的表单类型之一的一部分。

   $builder
        ->add('sidebarcontent')
        ->add('publicAgenda')
        ->add('assets')
        ->add('structure')
        ->add('history')
        ->add('emblem')
        ->add('demonym')
        ->add('type', EntityType::Class, array(
            'class' => 'ContentBundleEntityOrganizationType',
            'choice_label' => 'name',
            'empty_data'   => '',
            'required'      => false,
            'query_builder' =>function (EntityRepository $er) use ( $world ) {
                return $er->createQueryBuilder('c')
                    ->orderBy('c.name', 'ASC');
            }))
        ->add('geographicLocation', EntityType::Class, array(
            'class' => 'ContentBundleEntityLocation',
            'choice_label' => 'title',
            'empty_data'   => '',
            'required'      => false,
            'query_builder' =>function (EntityRepository $er) use ( $world ) {
                return $er->createQueryBuilder('c')
                    ->where('c.world = ?1')
                    ->setParameter(1, $world)
                    ->andWhere('c.state != ?2')
                    ->setParameter(2, 'archived')
                    ->orderBy('c.title', 'ASC');
            }
        ))
        ->add('parent', EntityType::Class, array(
            'class' => 'ContentBundleEntityOrganization',
            'choice_label' => 'title',
            'empty_data'   => '',
            'required'      => false,
            'query_builder' =>function (EntityRepository $er) use ( $world ) {
                return $er->createQueryBuilder('c')
                    ->where('c.world = ?1')
                    ->setParameter(1, $world)
                    ->andWhere('c.state != ?2')
                    ->setParameter(2, 'archived')
                    ->orderBy('c.title', 'ASC');
            }
        ))
        ->add('ethnicities', EntityType::Class, array(
            'class' => 'ContentBundleEntityEthnicity',
            'choice_label' => 'title',
            'empty_data'   => '',
            'multiple'     => true,
            'expanded'     => true,
            'required'      => false,
            'query_builder' =>function (EntityRepository $er) use ( $world ) {
                return $er->createQueryBuilder('c')
                    ->where('c.world = ?1')
                    ->setParameter(1, $world)
                    ->andWhere('c.state != ?2')
                    ->setParameter(2, 'archived')
                    ->orderBy('c.title', 'ASC');
            }
        ));

有没有办法将这些实体提取到最低限度(uuid、标题(而不是水合它们?我什至不确定这是否是正确的问题。我只是想减少我现在的加载时间。

EntityType 表单字段是必需的实体对象,您不能只选择必填字段,否则,它将不知道在实体关系中保留什么。

如果您确实只需要拉取某些字段,则必须使用ChoiceType字段。但请记住,在持久化实体时,需要具有相关实体的对象。

作为另一种选择,您还可以尝试将选择参数与找到的原则查询结果一起使用,这样您就可以缓存查询和/或查询结果。

例如:将query_builder参数替换为表单中的选择参数。

$choices = $this->createQueryBuilder('c')
    ->where('c.world = ?1')
    ->setParameter(1, $world)
    ->andWhere('c.state != ?2')
    ->setParameter(2, 'archived')
    ->orderBy('c.title', 'ASC'); 
    ->getQuery()
    ->useQueryCache(true) 
    ->useResultCache(true, 3600) // this will cache most common results for a while.
    ->execute();

然后字段如下。

->add('geographicLocation', EntityType::Class, array(
            'class' => 'ContentBundleEntityLocation',
            'choice_label' => 'title',
            'empty_data'   => '',
            'required'      => false,
            'choices' => $choices
))

相关内容

  • 没有找到相关文章

最新更新