当我加载我的个人资料页面时,我正在使用Symfony 3.3并且我正在获取此TransformationFailedException错误:
无法转换属性路径“postalcode”的值:预期数字。
此用户在数据库中的邮政编码值为:
'34125abc'
UserProfile实体中定义的邮政编码属性:
/**
* @ORM\Column(type="string")
*/
private $postalcode;
我的ProfileController:
class ProfileController extends Controller{
/**
* @Route("/edit_profile", name="edit_profile")
*/
public function profileAction(Request $request){
$profile = $this->getDoctrine()->getManager()->getRepository('AppBundle:UserProfile')->findOneBy(['user_id' => $this->getUser()->getUserId()]);
// If no UserProfile exists, create a UserProfile Object to insert it into database after POST
if(null === $profile){
$profile = new UserProfile();
$profile->setUserId($this->getUser()->getUserId());
}
$form = $this->createForm(EditProfileFormType::class);
$form->setData($profile);
// only handles data on POST
$form->handleRequest($request);
if($form->isSubmitted() && $form->isValid()) {
$result = $this->forward('AppBundle:API\User\Profile:update_profile', array(
'profile' => $profile
));
if(200 === $result->getStatusCode()){
$this->addFlash('success', "Profile successfully created!");
}
}
return $this->render(':User/Profile:edit_profile.html.twig', [
'EditProfileForm' => $form->createView(),
]);
}
}
我的EditProfileFormType:
class EditProfileFormType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('title', ChoiceType::class, array(
'choices' => array(
'Mr' => 'Mr',
'Mrs' => 'Mrs'
)
))
->add('firstName')
->add('lastName')
->add('street')
->add('postalcode', NumberType::class)
->add('city')
->add('telephone')
->add('mobile')
->add('company')
->add('birthday' , BirthdayType::class)
->add('callback', CheckboxType::class);
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'data_class' => 'AppBundle\Entity\UserProfile',
'validation_groups' => array('edit_profile')
]);
}
public function getBlockPrefix()
{
return 'app_bundle_edit_profile_form_type';
}
}
所以这里的问题似乎是数据库中的非数字字符串值
'34125abc'
存储在$profile
实体对象中,并由$form->setData($profile);
传递给表单。因此,在设置数据时,由于此行中的Numbertype {{1}而引发错误}。有没有办法将邮政编码值传递给表单,即使它不是数字,只有在提交表单时才检查Numbertype?因为我不需要验证,当我将数据传递给表单时。就在何时提交。
答案 0 :(得分:0)
解决方案非常简单,但很难找到......我改变了
- > add('postalcode',NumberType :: class)
到
- > add('postalcode',TextType :: class)
在我的EditProfileFormType.php中。
为什么呢?
因为表单构建器只需要知道数据库中字段的类型。在这种情况下,它应该不关心它是否是数字,因为这是模型限制的任务。在这种情况下,它是字符串,因此表单中的 Texttype 。设置表单时,将应用所有表单类型,但只有在提交表单时才验证验证组!应该是这样的!