gpt4 book ai didi

php - 在 Symfony2 中设置实体类型的默认值

转载 作者:可可西里 更新时间:2023-11-01 13:09:21 25 4
gpt4 key购买 nike

我不知道如何在 symfony2 中为实体类型设置默认值。我的代码如下所示:

$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();

但是您需要交出您正在使用的对象才能使其工作。我的回答如下。

我在这方面找到了很多不同的答案,但它们都对表单的构建方式进行了重组。这要容易得多。

最佳答案

所以我找到了很多答案来完成这项工作,但所有这些似乎都重组了以另一种方式构建的表单,但是我发现将对象设置为效果最好,所以我想我会发布我的解决方案以防有人跑再次进入问题。

这是我在 Controller 中的代码。

// 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();

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

关于php - 在 Symfony2 中设置实体类型的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19577982/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com