我有一个color
数据库列(varchar)
我正在使用symfony2表单并选择(UI看起来像http://selectize.github.io/selectize.js/中的Max Item部分)。
它提交为数组,我不知道如何将其更改为逗号分隔字符串并将其保存到数据库。我一直得到"这个值无效。"当我提交。
表格类型
$builder
->add('ram', 'choice', array(
'choices' => [],
))
->add('color', 'choice', array(
"label" => "Warna",
'choices' => $colorOptions,
'multiple' => true
));
在数据库列中,我想保存为black,white