0

我正在制作一个广告平台,我刚刚创建了一个 Booking 实体及其表单,但是在提交表单之后,值“金额”设置为空,但不应为空。

我创建了一个 prePersist 函数来在刷新之前设置 amount 属性。

这是我的实体 Booking 中的 prePersist 函数

     * @ORM\PrePersist
     * 
     * @return void
     */
    public function prePersist()
     {
         if(empty($this->createdAt))
         {
             $this->createdAt = new \DateTime();

         }

         if(empty($this->amount))
         {
            $this->amount = $this->ad->getPrice() * $this->getDuration();
         }
     }

public function getDuration()
     {
        $diff = $this->endDate->diff($this->startDate);
        return $this->days;
     }

我的预订控制器

    /**
     * @Route("/annonces/{id}/booking", name="ad_booking")
     * @IsGranted("ROLE_USER")
     */
    public function booking(Ad $ad, Request $request, ObjectManager $manager)
    {
        $booking = new Booking;        

        $form = $this->createForm(BookingType::class, $booking);

        $user = $this->getUser();

        $booking->setBooker($user) 
                        ->setAd($ad);

        $form->handleRequest($request);

        if($form->isSubmitted() && $form->isValid())
        {

            $manager->persist($booking);

            $manager->flush();

            return $this->redirectToRoute('booking_success', [
                'id' => $booking->getId() 
            ]);
        }

        return $this->render('booking/booking.html.twig', [
            'ad' => $ad,
            'bookingForm' => $form->createView()
        ]);
    }
}

当用户使用 $this->getUser(); 定义时,它不起作用 在提交和有效性检查。这是我开始学习 Symfony 以来第一次发生这种情况。我确定我一定忘记了什么,但我花了很多时间思考什么,我看不到答案。

和我的 BookingType 表格

public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('startDate', DateType::class, [
                'label' => 'Date de début de prestatation',
                'widget' => 'single_text'
            ])
            ->add('endDate', DateType::class, [
                'label' => 'Date de fin de prestatation',
                'widget' => 'single_text'

            ])
        ;
    }

在提交表单时,它应该调用 prePersist 函数,然后设置 amount 属性,但它返回为 null。我真的不明白我错过了什么。

4

2 回答 2

0

由于您似乎PrePersist没有被解雇,我猜您可能忘记了@ORM\HasLifecycleCallbacks()实体上的注释。

/**
 * @ORM\Entity(repositoryClass="App\Repository\BookingRepository")
 * @ORM\HasLifecycleCallbacks()
 */
class Booking
{
    ...
}
于 2019-06-22T17:01:45.133 回答
0

I just found out that was wrong. It was linked to the automatic validation : in the validator.yaml I commented the auto_mapping with

            App\Entity\Booking: true
            App\Entity\User: true

Now everything works fine !

于 2019-06-24T08:52:05.427 回答