Set default value for entity type in Symfony2

B R*_*Rad 6 php types symfony

I couldn't figure out how to make a default value for an entity type in symfony2. My code looked like this:

$rewardChoice = $this->createFormBuilder($reward)
    ->add('reward_name', 'entity', array(
        'class' => 'FuelFormBundle:Reward',
        'property' => 'reward_name',
        'data' => 2,
        'query_builder' => function(EntityRepository $er){
            return $er->createQueryBuilder('r')
                ->where('r.active = 1')
                ->groupBy('r.reward_id')
                ->orderBy('r.reward_name', 'DESC');

        },
    ))
    ->getForm();
Run Code Online (Sandbox Code Playgroud)

However you need to hand in the object you are working with to make it work. My answer is below.

I found a lot of different answers on this but they all restructured the way the form was built. This was much easier.

B R*_*Rad 9

So I found a lot of answers to make this work but all of them seemed to restructure the form to be built in another way however I found that setting the object in works best so I figured I would post my solution incase anyone ran into the issue again.

这是我在控制器中的代码.

// this is setting up a controller and really isn't important 
$dbController = $this->get('database_controller');

// this is getting the user id based on the hash passed by the url from the
// database controller
$user_id = $dbController->getUserIdByHash($hash);

// this is getting the Reward Entity.  A lot of times you will see it written as 
// $reward = new Reward however I am setting info into reward right away in this case
$reward = $dbController->getRewardByUserId($user_id);


$rewardChoice = $this->createFormBuilder($reward)
    ->add('reward_name', 'entity', array(
        'class' => 'FuelFormBundle:Reward',
        'property' => 'reward_name',

        // I pass $reward to data to set the default data.  Whatever you
        // assign to $reward will set the default value.  
        'data' => $reward,  
        'query_builder' => function(EntityRepository $er){
                return $er->createQueryBuilder('r')
                    ->where('r.active = 1')
                    ->groupBy('r.reward_id')
                    ->orderBy('r.reward_name', 'DESC');
        },
    ))
    ->getForm();
Run Code Online (Sandbox Code Playgroud)

我希望这会让事情更清楚.我看到很多相同的问题,但没有这个解决方案.


nac*_*bre 6

最好的方法是在创建表单之前设置奖励名称。例如:

$reward->setRewardName('your_relationship_reference_here');

$rewardChoice = $this->createFormBuilder($reward)
Run Code Online (Sandbox Code Playgroud)

使用该data字段可能会导致问题。