0

在我的文档中,我有一个类别成员属性,它引用了同一个类别 Category

/**
 * Parent Category's path ( Indexed )
 *
 * @var String
 * @MongoDB\ReferenceOne( targetDocument = "Category", simple="true" )
 */
protected $parent;

现在在我的表单中,我想创建parent一个选择下拉字段并在其中显示我的所有类别

$builder->add( 'parent', 'choice', array(                                                                                        
    'choices' => array( '..', '..' )
));                                                                                                               

如何在下拉列表中显示我的所有类别并映射该下拉字段,以便在提交表单时该parent字段包含父字段的对象 ID

4

1 回答 1

1

使用document字段类型:

$builder->add('parent', 'document', array(
    'class' => 'AcmeDemoBundle:Category',
    'property' => 'name_of_property_to_display_as_item_label',
));
于 2013-04-11T13:14:58.887 回答