当用户选择值表单列表时,如何自动更改页面(保存结果并使用新数据重新加载页面)。我计划跳过提交按钮->add('save', SubmitType::class);
我在Symfony 3工作。表单功能:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('userChoice', ChoiceType::class, array(
'choices' => array(
'1' => 'one',
'2' => 'two'),
))
;
}
怎么做?