Symfony2从api数据填充选择列表

时间:2012-11-09 17:56:42

标签: php forms symfony

我必须从Api调用填充选择列表。我尝试了几种没有成功的方法。

我认为最好的方法是实现ChoiceListInterface。

有人已经做过吗?

由于

1 个答案:

答案 0 :(得分:13)

扩展LazyChoiceList并实施loadChoiceList方法,例如

//ApiChoiceList.php
namespace Your\Namespace;
use Symfony\Component\Form\Extension\Core\ChoiceList\LazyChoiceList;
use Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceList;

class ApiChoiceList extends LazyChoiceList 
{
    protected function loadChoiceList()
    {
        //fetch and process api data

        return new ChoiceList($choices, $labels);

    }
}

然后在您表单的buildForm方法中

$builder->add('fieldname', 'choice', array(
    'choice_list' => new Your\Namespace\ApiChoiceList(),
    //....
));