Symfony2 FormBuilder を使用して ComboBox (html 選択タグ) でデフォルト値を選択しようとすると問題が発生します。これが私のコードです:
MyController.php Form th デフォルトの都道府県を選択するように送信します
$n = new Foo();
$em = $this->getDoctrine()->getEntityManager();
$province = $em->getRepository('MyEntityBundle:SYS_TProvince')->find('ES-M');
$form = $this->createForm(new NewsletterType($province), $n);
$request = $this->getRequest();
if ($request->getMethod() == 'POST') {
$form->bindRequest($request);
if ($form->isValid()) {
// some action
}
}
NewsletterType.php州フィールドにはデフォルトの州を使用しています
class NewsletterType extends AbstractType
{
private $province;
function __construct($province)
{
$this->province = $province;
}
public function buildForm(FormBuilder $builder, array $options)
{
$builder->add('idnewsletter', 'hidden');
$builder->add('email', 'email');
$builder->add('type', 'entity',
array('label' => 'type',
'class' => 'MeediamSplashBundle:USR_TType',
'property' => 'description',
'preferred_choices' => array(3,5,7)
));
$builder->add('province', 'entity',
array('label' => 'province',
'class' => 'MeediamSplashBundle:SYS_TProvince',
'property' => 'name',
'data' => $this->province
));
$builder->add('postalcode');
$builder->add('status', 'hidden');
$builder->add('created', 'hidden');
}
public function getName()
{
return 'newsletter';
}
}
SYS_TProvince.phpエンティティ
<?php
namespace SciOf\Meediam\SplashBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity
* @ORM\Table(name="SYS_TProvince")
*/
class SYS_TProvince
{
/**
* @ORM\Id
* @ORM\Column(type="string", length=5, nullable=false)
*/
protected $idprovince;
/**
* @ORM\Column(type="string", length=3, nullable=false)
* @Assert\NotBlank()
*/
protected $idcountry;
/**
* @ORM\Column(type="string", length=60, nullable=false)
* @Assert\NotBlank()
*/
protected $name;
public function getIdprovince() { return $this->idprovince; }
public function getIdcountry() { return $this->idcountry; }
public function getName() { return $this->name; }
public function setIdprovince($idprovince) { $this->idprovince = $idprovince; }
public function setIdcountry($idcountry) { $this->idcountry = $idcountry; }
public function setName($name) { $this->name = $name; }
public function __toString() { return $this->idprovince; }
}
どうやらすべて問題ありませんが、機能しません。「preferred_choices」を使用すると機能しますが、「data」を介してデフォルト値を選択できません。
オブジェクトはクラス内にあります。->getIdProvice() を使用すると、オブジェクトの PK が取得され、文字列であるためエラーが発生します。
いくつかの情報を読みましたが、方法がわかりません:
Symfony2でフォームフィールドのデフォルト値を設定するには? http://symfony.com/doc/current/reference/forms/types/field.html
誰かにエラーが表示されますか?