Select 表单中的选项下拉列表

Select option of choice dropdown in a form

我想select控制器下拉菜单中的一个选项。我正在尝试使用以下代码:

$form = $this->createForm(new SearchAdvancedType());
$form->get('option')->setData($session->get('option'));

但它在下拉列表中什么也没做。页面加载时没有 selected。

为了检查该值是否设置正确,我使用以下方法打印它:

$form->get('brand')->Data();

结果是一个数字(它会根据我之前在下拉列表中选择的内容而变化)。

我需要知道如何正确 select 下拉菜单的值。

要预设 select 选项,我会将值传递到表单中。

class MyFormType extends AbstractType
{

    /**
     * @param FormBuilderInterface $builder
     * @param array $options
     */
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('type', 'choice', [
                'required' => true,
                'choices' => ['yes' => 'Yes', 'no' => 'No'],
                'data' => $options['select_option']
            ])
        ;
    }

    /**
     * @param OptionsResolver $resolver
     */
    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => null,
            'select_option' => null
        ));
    }

    /**
     * @return string
     */
    public function getName()
    {
        return 'my_form';
    }

}

然后在你的controller中,将值传入;

$form = $this->createForm(new MyFormType(), null, ['select_option' => 'no');