我有以下问题。我有一个国家/地区表单,我使用 EntityType 从用户实体列表中选择联系人。 Symfony正确地使用空选项呈现select。不需要联系人,因此可以选择空选项。因此,如果我选择空选项,我希望将空字符串(在请求中发送)转换为 null 。根据{{3}}可以在'empty_data' => null
设置时完成。这适用于创建表单。但是,如果我已经在创建表单中设置了联系人,并且我想在编辑表单中将联系人设置为 null ,则 null 将被忽略,值不会更改。从用户A到用户B的更改工作正常。有人知道它为什么不改变吗?
CountryType.php 的部分 buildForm 方法:
$builder->add('contactPerson', EntityType::class, [
'class' => 'AppBundle:User',
'choice_label' => 'username',
'empty_data' => null,
'required' => false,
// 'placeholder' => '' - Can be ommited, empty value is default
]);
部分 Country.orm.yml :
manyToOne:
contactPerson:
targetEntity: AppBundle\Entity\User
joinColumn:
name: contact_person
referencedColumnName: id
onDelete: RESTRICT
nullable: true
fetch: EAGER
CountryController.php 的editAction 方法:
public function editAction(Request $request, $id)
{
/** @var CountryService $countryService */
$countryService = $this->get('app.country');
/** @var Country $country */
$country = $countryService->findById($id);
if (!$country) {
$this->addFlash('error', 'back.country.not_found');
return $this->redirectToRoute('back_country_list');
}
$form = $this->createForm(
CountryType::class,
$country,
[
'edit_action' => true
]
);
$form->handleRequest($request);
if ($form->isValid()) {
$countryService->edit($country);
$this->addFlash('success', 'back.country.edited');
return $this->redirectToRoute('back_country_edit', ['id' => $id]);
}
return $this->render(
'AppBundle:back\country:edit.html.twig',
[
'form' => $form->createView()
]
);
}
POST请求的内容如下:
"contactPerson" => ""
但如果我在die(dump($country->getContactPerson())
之后的某处输入$form->handleRequest($request)
,则值仍设置为用户,而不是 null 。
谢谢你的帮助!
答案 0 :(得分:1)
对我来说这太令人惊讶,但我可能在Symfony中发现了一个错误。有关详细信息,请参阅错误报告:https://github.com/symfony/symfony/issues/25181
答案 1 :(得分:0)
use Symfony\Bridge\Doctrine\Form\Type\EntityType;
使用上面的类并尝试以下代码
$builder->add('contactPerson', EntityType::class, [
'class' => 'AppBundle:User',
'choice_label' => 'username',
'required' => false,
'placeholder' => 'Please choose a contact person',
'empty_data' => null,
]);