dougou5852 2016-06-05 22:47
浏览 20

Symfony表单生成器单选按钮

I am using Symfony 3 framework, and I need to create a form that will display a quiz question, and image and four possible answers as radio buttons. So far I have created the fields id,question and image that are mapped to my entity fields from my database but having problem with the radio buttons. Bellow is what I have so far.

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
    $builder
        ->add('id',HiddenType::class)
        ->add('image',TextType::class)
        ->add('question',TextType::class)
        ->add('Options to choose',ChoiceType::class,
                array('choices' => array(
                        'answer1' => '1',
                        'answer2' => '2',
                        'answer3' => '3',
                        'answer4' => '4'),
                'choices_as_values' => true,'multiple'=>false,'expanded'=>true))
        ->add('Submit',SubmitType::class);
}

My problem are the following:

->add('Options to choose' I cannot have this, because Symfony is trying to find methods in my entity class. Also bellow 'answer1' => '1' is not getting the data from the database. How can I pull the data from the database and display it for each radio buttons. How can I solve this issues and have 4 radio buttons that display the 4 database options. Thanks for the help.

  • 写回答

2条回答 默认 最新

  • doujiaoben28596 2016-06-06 09:08
    关注

    What you've done so far looks more like a form which will create a question.

    Use entity field and choices options :

    $builder->add('answer', EntityType::class, array(
    'class' => 'AppBundle:Answer',
    'choices' => $question->getAnswers(),
    

    ));

    Your goal is to build a form with one question and its answers. Can you show us your entities ? Quiz, Question and Answer i guess.

    评论

报告相同问题?

悬赏问题

  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多
  • ¥50 求一个win系统下运行的可自动抓取arm64架构deb安装包和其依赖包的软件。
  • ¥60 fail to initialize keyboard hotkeys through kernel.0000000000
  • ¥30 ppOCRLabel导出识别结果失败
  • ¥15 Centos7 / PETGEM
  • ¥15 csmar数据进行spss描述性统计分析
  • ¥15 各位请问平行检验趋势图这样要怎么调整?说标准差差异太大了
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题