首先,我们使用 Symfony 3.4 。
我们在实体children
上有一个自引用字段 Category
。因此,一个类别可以有类别子项,而那些类别子项可以有类别子项,依此类推...
class Category
{
/**
* @ORM\Column(type="string")
*/
private $title;
/**
* @ORM\OneToMany(targetEntity="AcmeBundle\Entity\Category", mappedBy="parent")
*/
private $children;
/**
* @ORM\ManyToOne(targetEntity="AcmeBundle\Entity\Category", inversedBy="children")
*/
private $parent;
}
现在,我们创建了一个API,并使用Symfony的表单功能来验证和创建对象和数据。因此,对于类别,我们创建了此FormType:
class CategoryType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title')
->add('children', CollectionType::class, [
'entry_type' => CategoryType::class,
'allow_add' => true,
'allow_delete' => true,
'mapped' => false,
'by_reference' => false,
]);
;
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'AcmeBundle\Entity\Category'
));
}
}
这是发送到后端的 API数据数组的示例:
array(2) {
[0]=>
array(2) {
["title"]=>
string(9) "Backlight"
["children"]=>
array(3) {
[0]=>
array(2) {
["title"]=>
string(10) "Technology"
["children"]=>
array(0) {
}
}
[1]=>
array(2) {
["title"]=>
string(12) "Panel mount "
["children"]=>
array(0) {
}
}
[2]=>
array(2) {
["title"]=>
string(11) "OEM modules"
["children"]=>
array(0) {
}
}
}
}
[1]=>
array(2) {
["title"]=>
string(13) "Ball diameter"
["children"]=>
array(2) {
[0]=>
array(2) {
["title"]=>
string(18) "No pointing device"
["children"]=>
array(0) {
}
}
[1]=>
array(2) {
["title"]=>
string(9) "Trackball"
["children"]=>
array(0) {
}
}
}
}
}
但是,当我们执行保存并运行此代码时,会收到此错误:
[09-Aug-2018 14:41:13 Europe/Paris] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /Applications/MAMP/htdocs/acme-project/vendor/symfony/symfony/src/Symfony/Component/OptionsResolver/OptionsResolver.php on line 865
[09-Aug-2018 14:41:13 Europe/Paris] PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32768 bytes) in /Applications/MAMP/htdocs/acme-project/vendor/symfony/symfony/src/Symfony/Component/Debug/Exception/OutOfMemoryException.php on line 1
Sooooo,它似乎陷入创建FormTypes的无限循环中,因为他正在创建并不断收集child-> children-> children->。 ..(OptionsResolver
是FormType中configureOptions()
函数的参数)
我的问题是,使用表单功能是否有可能?或者我应该如何编程?还是我必须从Symfony-Form功能中删除类别的保存,而必须编写自己的递归保存功能?
我见过其他人在问同样的事情,但也没有得到答案: http://forum.symfony-project.org/forum/23/topic/70753.html
答案 0 :(得分:0)
我认为您应该使用交响文档https://symfony.com/doc/current/form/dynamic_form_modification.html#dynamic-generation-for-submitted-forms中所述的表单事件
在主表单上附加PRE_SET_DATA
事件,在POST_SUBMIT
字段上附加title
事件。
仅当数据在模型中或在用户提交的数据中时,才在表单修饰符中添加children
字段,从而停止递归。