symfony2 - 从数据库添加选项

时间:2013-04-05 14:44:17

标签: php forms symfony drop-down-menu populate

我希望使用自定义查询中的值填充symfony2中的选项框。我尽可能地尝试简化。

控制器

class PageController extends Controller
{

    public function indexAction()
    {
      $fields = $this->get('fields');
      $countries =  $fields->getCountries(); // returns a array of countries e.g. array('UK', 'France', 'etc')
      $routeSetup = new RouteSetup(); // this is the entity
      $routeSetup->setCountries($countries); // sets the array of countries

      $chooseRouteForm = $this->createForm(new ChooseRouteForm(), $routeSetup);


      return $this->render('ExampleBundle:Page:index.html.twig', array(
        'form' => $chooseRouteForm->createView()
      ));

    }
}

ChooseRouteForm

class ChooseRouteForm extends AbstractType
{

  public function buildForm(FormBuilderInterface $builder, array $options)
  {

    // errors... ideally I want this to fetch the items from the $routeSetup object 
    $builder->add('countries', 'choice', array(
      'choices' => $this->routeSetup->getCountries()
    ));

  }

  public function getName()
  {
    return 'choose_route';
  }
}

2 个答案:

答案 0 :(得分:19)

您可以使用..

将选项传递给表单
$chooseRouteForm = $this->createForm(new ChooseRouteForm($routeSetup), $routeSetup);

然后在你的表格中..

private $countries;

public function __construct(RouteSetup $routeSetup)
{
    $this->countries = $routeSetup->getCountries();
}

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('countries', 'choice', array(
        'choices' => $this->countries,
    ));
}

更新(并改进)了2.8 +

首先,您不需要将国家/地区作为路径对象的一部分传递,除非它们将存储在数据库中。

如果将可用国家/地区存储在数据库中,则可以使用事件监听器。如果不是(或者如果您不想使用监听器),则可以在选项区域中添加国家/地区。

使用选项

在控制器..

$chooseRouteForm = $this->createForm(
    ChooseRouteForm::class,
    // Or the full class name if using < php 5.5
    $routeSetup,
    array('countries' => $fields->getCountries())
);

以你的形式......

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder->add('countries', 'choice', array(
        'choices' => $options['countries'],
    ));
}

public function configureOptions(OptionsResolver $resolver)
{
    $resolver
        ->setDefault('countries', null)
        ->setRequired('countries')
        ->setAllowedTypes('countries', array('array'))
    ;
}

使用监听器 (如果国家/地区阵列在模型中可用)

在控制器..

$chooseRouteForm = $this->createForm(
    ChooseRouteForm::class,
    // Or the full class name if using < php 5.5
    $routeSetup
);

以你的形式......

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->addEventListener(FormEvents::PRE_SET_DATA, function(FormEvent $event) {
            $form = $event->getForm();
            /** @var RouteSetup $routeSetup */
            $routeSetup = $event->getData();

            if (null === $routeSetup) {
                throw new \Exception('RouteSetup must be injected into form');
            }

            $form
                ->add('countries', 'choice', array(
                    'choices' => $routeSetup->getCountries(),
                ))
            ;
        })
    ;
}

答案 1 :(得分:10)

我无法发表评论或下载,所以我只想回答Qoop的回答: 除非您开始将表单类型类用作服务,否则您提出的建议将起作用。 通常应避免通过构造函数向表单类型对象添加数据。

表单类型类视为 - 它是对表单的一种描述。当您创建表单实例(通过构建它)时,您将获得表单的对象,该表单由表单类型中的描述构建,然后填充数据。

看看这个:http://www.youtube.com/watch?v=JAX13g5orwo - 这种情况在演讲的31分钟左右被描述。

您应该使用表单事件FormEvents :: PRE_SET_DATA并在向表单注入数据时操作字段。 请参阅:http://symfony.com/doc/current/cookbook/form/dynamic_form_modification.html#customizing-your-form-based-on-the-underlying-data