フォームでエンティティ フィールド タイプを作成しようとしています。コードは次のとおりです。
$extraSpecsRepository = $this -> getDoctrine()
-> getRepository('LabsCatalogBundle:Specs');
$availQuery = $extraSpecsRepository->createQueryBuilder('sel')
->where("sel.cat = '0'")
->getQuery();
$available = $availQuery->getResult();
$extraSpecsRepository = $this -> getDoctrine()
-> getRepository('LabsCatalogBundle:ProductExtraspecs');
$selQuery = $extraSpecsRepository->createQueryBuilder('sel')
->join('sel.specs', 'specs')
->where("specs.cat = '0' AND sel.regmatid = $id")
->getQuery();
$selected = $selQuery->getResult();
$form = $this ->createFormBuilder($product)
->add('extraspecs', 'entity', array(
'class' => 'LabsCatalogBundle:Specs',
'choices' => $typeavailable,
'data' => $selected,
'property' => 'specid',
'multiple' => false,
))
->getForm();
そして、これはと変数`のvar_dump
両方からのものです:$selected
$typeavailable
$typeavailable:
array (size=4)
0 =>
array (size=4)
'specid' => int 20
'desc' => string 'Primary Antibodies' (length=18)
'cat' => int 0
'type' => int 1
1 =>
array (size=4)
'specid' => int 21
'desc' => string 'Secondary Antibodies' (length=20)
'cat' => int 0
'type' => int 2
2 =>
array (size=4)
'specid' => int 22
'desc' => string 'Fluorescent-Labeled Antibodies' (length=30)
'cat' => int 0
'type' => int 5
3 => &
array (size=4)
'specid' => int 27
'desc' => string 'Related Antibodies' (length=18)
'cat' => int 0
'type' => int 7
$selected:
array (size=1)
0 => &
array (size=4)
'regmatid' => int 1600
'specid' => int 21
'attrib' => null
'value' => null
何かおかしくないですか?ドロップリストを生成していますが、「選択された」値を選択していないためです。