2016-03-07 108 views
0

是否可以將de默認無線電選擇選項設置爲業務?我正在使用下面的symfony代碼,但在表單中沒有選擇任何收音機選項。使用單選按鈕在ChoiceType中設置默認數據

 ->add('business', 'choice', array(
      'translation_domain' => 'messages', 
      'choices' => array('business' => true, 'private' => false), 
      'expanded' => true, 
      'multiple' => false, 
      'choices_as_values' => true, 
     )) 
+0

什麼版本的symfony您使用的是? – Heah

+0

我正在使用的版本是2.7 – Tom

+0

如果您按照Raphaël的答案指示,則應驗證您已更新至最新版本2.7.10,因爲它修復了一些錯誤並可能解決您的問題。 – Heah

回答

1

你可以通過默認的數據表單:

// Inside a controller 
$this->createForm(YourFormType::class, [ 
    'business' => true, // Default value for your business field 
]); 

您還可以設置表單生成器的默認值:

->add('business', 'choice', array(
     'translation_domain' => 'messages', 
     'choices' => array('business' => true, 'private' => false), 
     'expanded' => true, 
     'multiple' => false, 
     'choices_as_values' => true, 
     'data' => true, // Default value 
    )) 
相關問題