Symfony 3中的错误



我正在尝试编辑必须选择并必须在其中选择值的记录。

$formMapper->add('addedBy', EntityType::class, [
             'class' => 'AppBundle:User', 'choice_label' => function ($user) {
                 return $user->getFullName();
             },
         ])
         ->add('medicalProvider', EntityType::class, [
            'class' => 'AppBundle:MedicalProvider', 'choice_label' => function ($medicalProvider) {
                 return $medicalProvider->getName();
             }, 
        ])

在审核部分中,我有两个实体表格,我必须采用user和Medical -provider的价值观,但是当我将这些内容加载到Choice_label中时,我会遇到这样的错误。

:允许记忆大小为134217728字节耗尽的字节(试图分配21348352字节)载于:und offfic symfony compont component component debug exception offmemoryexception outofmemoryException offerofmemoryException:允许的内存:允许的内存大小:134217728字节耗尽(试图分配21348888888352 BYTOCE)IN DE) software xampp htdocs meopin_2 trunk vendor symfony symfony symfony src symfony component component httpkernel profiler profiler fileproflerstorage.php:158堆栈跟踪:

0 {main}

下一个logicexception:请求堆栈在d: software xampp htdocs meopin_2 trunk var var cache cache dev class.php:4690堆栈跟踪:

0 [内部函数]:Symfony Component httpkernel httpkernel-> terminateWithException(object(Symfony Component Component component debug exception exception offmemoryexception))))

1 D: Software Xampp htdocs Meopin_2 TRUNK var var cache cache dev class.php(3323):call_user_func(array,object(symfony compents component component component debug debug debug export export export off off offmemoryexception)

h1> 2 d: software xampp htdocs meopin_2 trunk var var cache cache dev class.php(3366):symfony component component component debug debug errorhandler- erryhandler-&gter->异常 outofmemoryException),array)

3 [内部功能]:Symfony Component debug errorhandler :: in Class.php。

有人可以帮我吗?

预先感谢。

我通过扩展内存限制获得了解决方案。

但是,页面花了很多时间来加载任何人有任何想法以最大程度地减少页面加载时间?

相关内容

  • 没有找到相关文章

最新更新