web-dev-qa-db-ja.com

フォームのビューデータはクラス...のインスタンスであることが期待されますが、a(n) stringです

現在、次のエラーが発生しています。

"フォームのビューデータはSymfony\Component\HttpFoundation\File\Fileクラスのインスタンスであることが期待されますが、a(n)文字列です。このエラーを回避するには、" data_class "nullのオプション、またはa(n)文字列をSymfony\Component\HttpFoundation\File\Fileのインスタンスに変換するビュートランスフォーマーを追加することによるオプション。"

SoundController-アップロード機能

 /**
 * @Security("is_granted('IS_AUTHENTICATED_FULLY')")
 * @Route("/song/upload", name="upload_song")
 * @param Request $request
 * @return \Symfony\Component\HttpFoundation\Response
 */
public function uploadSong(Request $request)
{
    $song = new Sound();

    $form = $this->createForm(SoundType::class, $song);
    $form->handleRequest($request);

    if ($form->isSubmitted() && $form->isValid())
    {
        $file = $song->getFile();
        $user = $this->getUser();

        $fileName = $this
            ->get('app.file_uploader')
            ->setDir($this->get('kernel')->getRootDir()."/../web".$this->getParameter('songs_directory'))
            ->upload($file);

        $song->setFile($fileName);

        $file = $song->getCoverFile();
        if ($file === null)
        {
            $song->setCoverFile($this->getParameter('default_cover'));
        }
        else
        {
            $fileName = $this
                ->get('app.file_uploader')
                ->setDir($this->get('kernel')->getRootDir()."/../web".$this->getParameter('covers_directory'))
                ->upload($file);

            $song->setCoverFile($fileName);
        }

        $song->setUploader($user);
        $song->setUploaderID($user->getId());
        $user->addSong($song);

        $entityManager = $this->getDoctrine()->getManager();
        $entityManager->persist($song);
        $entityManager->flush();

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

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

SoundType-Form

public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->add('file', FileType::class)
        ->add('coverFile', FileType::class, [
            'required' => false
        ])
        ->add('songName', TextType::class)
        ->add('songAuthor', TextType::class);
}
10
J.D.

ここに答えがあります:

{
      $builder
          ->add('file', FileType::class, array('data_class' => null))
          ->add('coverFile', FileType::class, array('data_class' => null))
          ->add('coverFile', FileType::class, array('data_class' => null,'required' => false))
          ->add('songName', TextType::class)
          ->add('songAuthor', TextType::class);
  }
16
J.D.
/**
 * @ORM\Column(type="string")
 *
 * @Assert\NotBlank(message="Please, upload the song as a MP3 file.")
 * @Assert\File(mimeTypes={ "audio/mpeg", "audio/wav", "audio/x-wav", "application/octet-stream" })
 */
private $file;

文字列を保存することをdoctrineに伝えますが、データベースに保存したくない物理ファイルを送信するフォームでアップロードボタンをレンダリングします。代わりにファイルを一時ディレクトリからアップロードディレクトリに移動し、ファイルの名前をデータベースに記憶したいので、このプロパティが必要な場合これは文字列です。

最善の方法はこれに従うことです ページ

3
Frank B