File upload with Symfony3 not working

前端 未结 3 1369
星月不相逢
星月不相逢 2020-12-12 07:20

I am trying to upload file with Symfony3 but with no luck. I have a Profile entity which is linked to User entity with 1-1 relationship. The profile contains a picture colum

3条回答
  •  青春惊慌失措
    2020-12-12 08:14

    You should try

    $form = $this->createForm(ProfileType::class, $profileModel); $form->handleRequest($request); $file = $profileModel->getBrochure();

    More: http://symfony.com/doc/current/controller/upload_file.html

提交回复
热议问题