使用选择表单类型的数组到字符串转换错误

时间:2013-01-02 14:25:10

标签: php symfony doctrine

我正在尝试做什么:

我有一个包含表“teams”和属性“weekday”的数据库。我生成了我的学说实体,现在我正在构建一个Symfony2表单。

我想将工作日的数组保存到team表中的工作日属性中。 weekdays属性是VARCHAR(255),因此它应该能够包含字符串数组。我使用选择类型但是在提交表单时我得到一个数组到字符串转换错误。

我在做什么:

我使用了Symfony2选择formtype(带有多个选项),因为团队可以在工作日选择几个工作日。我首先检索了我的团队对象数据。然后我做这样的表格:

$builder = $this->createFormBuilder($team);
$form = $builder->add('weekday', 'choice', array(
        'choices' => array(
            'mon'    => 'Monday',
            'tue'    => 'Tuesday',
            'wed'    => 'Wednesday',
            'thu'    => 'Thursday',
            'fri'    => 'Friday',
            'sat'    => 'Saturday',
            'sun'    => 'Sunday',
            ),
        'multiple' => true,
        'expanded' => true,
        'label' => 'Day of the week',
        'label_attr' => array('class' => 'control-label'),
        'attr' => array('placeholder' => 'Day of the week', 'size' => '7')
        ))->getForm();

提交表单后,我使用实体管理器将更改保存到数据库:

if ($request->isMethod('POST')) {
    $form->bind($request);

    if ($form->isValid()) {

        // Save changes to db
        $em = $this->getDoctrine()->getManager();
        $em->persist($team);
        $em->flush();

        // Redirect to new canonical url
        return $this->redirect($this->generateUrl('team_edit', array('nameCanonical' => $team->getNameCanonical(), 'code' => $team->getCode())));
    }

错误:

这对我来说似乎是100%有效的代码。我在symfony2中制作了其他形式。但是当我在表单中选择一个或多个工作日,然后提交时,我收到此错误:

  

执行'UPDATE teams SET weekday =?时发生异常?   WHERE id =?'用params {“1”:[“mon”,“tue”,“wed”],“2”:6}:

     

注意:数组转换为字符串   /Users/username/Dropbox/www/projectname/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php   第1211行

Full error page here

我想不出办法解决这个问题。帮助赞赏! 我的完整代码可以查看on this gist

1 个答案:

答案 0 :(得分:12)

您需要做的是将您的属性类型设置为array,并且Doctrine会为您处理(反)序列化。

class Team
{
    /**
     * @ORM\Column(type="array")
     */
    protected $weekdays;

    /* Some more code */
}

所有可能类型的列表都可以在官方documentation中找到。