繁体   English   中英

ChoiceType 未映射到实体字段

[英]ChoiceType Not Mapping to Entity Field

我有一个公告实体,将EditAnnouncementType表单映射到该实体。 我还有另外两个CheckBoxType表单可以自动更新它们各自的字段,但是ChoiceType表单不起作用。

$builder
        ->add('edit', SubmitType::class,
            array
            (
                'label' => 'Save changes',
                'attr' => ['class' => 'btn btn-primary']

            ))

        ->add('type', ChoiceType::class,
            [
                'choices' => [
                    'info_type' => 1,
                    'star_type' => 2,
                    'alert_type' => 3,
                    'lightbulb_type' => 3,
                    'event_type' => 4,
                    'statement_type' => 5,
                    'cat_type' => 6,
                    'hands_type' => 7
                ],

                'mapped' => true,
                'expanded' => true,
                'required' => true,
            ])

公告实体和类型字段

class Announcement
{
    /**
     * @var int
     */
     private $type;

     /**
     * @return string
     */
     public function getType(): string
     {
        return $this->type;
     }

    /**
    * @param int $type
    *
    * @return $this
    */
    public function setType(int $type)
    {
        $this->type = $type;
        return $this;
    }

我怀疑 Symfony 以某种方式严格检查值(使用=== )。
并且由于您的 getter 返回一个string ,因此映射不会正确发生。

你应该尝试修复你的吸气剂:

 /**
  * @return int
  */
 public function getType(): int
 {
    return $this->type;
 }

还要注意,您的选择数组可能有问题:

// be careful: those two have the same value
'alert_type' => 3, 
'lightbulb_type' => 3,

这肯定会给 Symfony 带来问题,特别是如果它使用array_values来从实体的值中选择正确的选项。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM