私は、FooCollectionと呼ばれるエンティティのコレクションを持っています。このコレクションはAPIの応答から構築されます。私は教義を使わない。エンティティはFooクラスのインスタンスで、それぞれBarという名前のクラスを保持します。私はテンプレートのような公式リストを生成します:symfonyフォームとしてのコレクション
<form>
<ul>
{% for foo in fooCollection %}
<li><input type="checkbox" name="foo[{{foo.id}}]" value="1"> <label>{{foo.bar.title}}</label></li>
{% endfor %}
</ul>
</form>
このフォームリストを作成するにはどうすればいいですか?
<?php
class Foo
{
private $bar;
private $id;
public function getId()
{
return $this->id;
}
public function setBar(Bar $bar)
{
$this->bar = $bar;
}
public function getBar()
{
return $this->bar;
}
}
class Bar
{
private $title;
public function getTitle()
{
return $this->title;
}
}
class FooCollection extends \Doctrine\Common\Collections\ArrayCollection
{
}
は、フォームビルダを使用している場合、あなたはこれを試すことができますエンティティを使用してリストを作る:http://symfony.com/doc/current/reference/forms/types/entity.html –
ドキュメントから:Doctrineエンティティのオプションをロードするための特別なChoiceTypeフィールド。私はdoctrineを使用しません –