私のモデルには、RealEstate と Image という 2 つの関連するクラスが含まれており、RealEstate の 1 つのインスタンスに対して、多数の Image のインスタンスが存在する可能性があります。Image クラスは他のクラスと関連付けて使用することもできるため、「1 対多、結合テーブルを使用した単方向」の関係を選択しました。これにより、イメージがどこで使用されているかを知る必要がなくなります。次に、RealProperty クラスには $images プロパティ、getImages()、addImage(Image $image)、および removeImage(Image $image) メソッドが提供され、コンストラクター内の $images は空の ArrayCollection によって定義されます。したがって、次のモデルクラスがあります。
1) アプリ\エンティティ\RealProperty\RealProperty
namespace App\Entity\RealProperty;
use App\Entity\Platform\Image;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\RealProperty\RealPropertyRepository")
* @ORM\Table(name="real_property")
*/
class RealProperty
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* Many real properties have many images
* @ORM\ManyToMany(targetEntity="App\Entity\Platform\Image", cascade={"all"})
* @ORM\JoinTable(name="real_property_images",
* joinColumns={@ORM\JoinColumn(name="real_property_id", referencedColumnName="id")},
* inverseJoinColumns={@ORM\JoinColumn(name="image_id", referencedColumnName="id", unique=true)}
* )
*/
private $images;
/**
* RealProperty constructor
*/
public function __construct()
{
$this->images = new ArrayCollection();
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @return mixed
*/
public function getImages()
{
return $this->images;
}
/**
* @param Image $image
*/
public function addImage(Image $image)
{
if (!$this->images->contains($image)) {
$this->images->add($image);
}
}
/**
* @param Image $image
*/
public function removeImage(Image $image)
{
$this->images->removeElement($image);
}
}
2) アプリ\エンティティ\プラットフォーム\イメージ
namespace App\Entity\Platform;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\HttpFoundation\File\File;
use Vich\UploaderBundle\Mapping\Annotation as Vich;
/**
* @ORM\Entity(repositoryClass="App\Repository\Platform\ImageRepository")
* @Vich\Uploadable
*/
class Image
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* NOTE: This is not a mapped field of entity metadata, just a simple property.
*
* @Vich\UploadableField(mapping="image", fileNameProperty="imageName", size="imageSize")
*
* @var File
*/
private $imageFile;
/**
* @ORM\Column(type="string", length=255, nullable=false)
*
* @var string
*/
private $imageName;
/**
* @ORM\Column(type="integer")
*
* @var integer
*/
private $imageSize;
/**
* @ORM\Column(type="datetime", nullable=false)
* @var \DateTime
*/
private $dateOfCreation;
/**
* @ORM\Column(type="datetime", nullable=false)
* @var \DateTime
*/
private $dateOfChange;
/**
* Image constructor
*/
public function __construct()
{
$currentDate = new \DateTime('NOW');
$this->dateOfCreation = $currentDate;
$this->dateOfChange = $currentDate;
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @param mixed $id
*/
public function setId($id)
{
$this->id = $id;
}
/**
* @return File
*/
public function getImageFile(): ?File
{
return $this->imageFile;
}
/**
* If manually uploading a file (i.e. not using Symfony Form) ensure an instance
* of 'UploadedFile' is injected into this setter to trigger the update. If this
* bundle's configuration parameter 'inject_on_load' is set to 'true' this setter
* must be able to accept an instance of 'File' as the bundle will inject one here
* during Doctrine hydration.
*
* @param File|\Symfony\Component\HttpFoundation\File\UploadedFile $image
*/
public function setImageFile(?File $image = null): void
{
$this->imageFile = $image;
if (null !== $image) {
// It is required that at least one field changes if you are using doctrine
// otherwise the event listeners won't be called and the file is lost
$this->dateOfChange = new \DateTimeImmutable();
}
}
/**
* @return string
*/
public function getImageName(): ?string
{
return $this->imageName;
}
/**
* @param string $imageName
*/
public function setImageName(?string $imageName)
{
$this->imageName = $imageName;
}
/**
* @return int
*/
public function getImageSize(): ?int
{
return $this->imageSize;
}
/**
* @param int $imageSize
*/
public function setImageSize(?int $imageSize)
{
$this->imageSize = $imageSize;
}
/**
* @return \DateTime
*/
public function getDateOfCreation(): ?\DateTime
{
return $this->dateOfCreation;
}
/**
* @param \DateTime $dateOfCreation
*/
public function setDateOfCreation(?\DateTime $dateOfCreation)
{
$this->dateOfCreation = $dateOfCreation;
}
/**
* @return \DateTime
*/
public function getDateOfChange(): ?\DateTime
{
return $this->dateOfChange;
}
/**
* @param \DateTime $dateOfChange
*/
public function setDateOfChange(?\DateTime $dateOfChange)
{
$this->dateOfChange = $dateOfChange;
}
}
クラスごとに、適切なフォーム タイプを作成しました。
1) アプリ\フォーム\RealProperty\RealPropertyType
namespace App\Form\RealProperty;
use App\Entity\RealProperty\RealProperty;
use App\Form\Platform\ImageType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CollectionType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class RealPropertyType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('images', CollectionType::class, array(
'entry_type' => ImageType::class,
'label' => false,
'allow_add' => true,
'allow_delete' => true,
'prototype' => true,
'by_reference' => false
))
->add('submit', SubmitType::class, [
'label' => 'Сохранить',
'attr' => [
'class' => 'btn btn-sm btn-primary col-6 mx-auto',
'style' => 'display: block;'
]
])
;
}
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'App\Entity\RealProperty\RealProperty'
));
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix()
{
return 'real_property_real_property';
}
}
2) アプリ\フォーム\プラットフォーム\イメージタイプ
<?php
namespace App\Form\Platform;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Vich\UploaderBundle\Form\Type\VichImageType;
class ImageType extends AbstractType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('imageFile', VichImageType::class, array(
'label' => false,
'required' => true
))
;
}
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'App\Entity\Platform\Image'
));
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix()
{
return 'platform_image';
}
}
CollectionType を含むフォームが作成されるコントローラーのコードを次に示します。
<?php
namespace App\Controller\RealProperty;
use App\Entity\RealProperty\RealProperty;
use App\Form\RealProperty\RealPropertyType;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* Class RealPropertyController
*
* @Route("real_property")
* @package App\Controller\RealProperty
*/
class RealPropertyController extends Controller
{
/**
* Creates a new real property entity
*
* @Route("/new", name="real_property_new")
* @Method({"GET", "POST"})
* @param Request $request
* @return \Symfony\Component\HttpFoundation\RedirectResponse|Response
*/
public function newAction(Request $request) {
$realProperty = new RealProperty();
$form = $this->createForm(RealPropertyType::class, $realProperty);
$form->handleRequest($request);
// dump($form->getData());
// dump($realProperty);
// dump($realProperty->getImages());
// dump($request->get('images'));
if ($form->isSubmitted() && $form->isValid()) {
$em = $this->getDoctrine()->getManager();
$em->persist($realProperty);
$em->flush();
return $this->redirectToRoute('real_property_index');
}
return $this->render('RealProperty/RealProperty/new.html.twig', [
'realProperty' => $realProperty,
'form' => $form->createView(),
]);
}
}
ただし、Image インスタンスを含む必要がある ArrayCollection は常に空ですが、クライアント側では CollectionType のすべての子フィールドにイメージが含まれます。
Vich/UploaderBundle の構成が間違っている、サーバー ディレクトリに画像を保存する権限がない、データベース スキーマが正しく記述されていない、と推測できますが、違います。すべてが正しいです。特にこのために、newAction() で ImageType フォームを作成する別の ImageController を作成し、すべての画像をデータベースに安全に保存します。したがって、問題は ArrayCollection レベル、または「1 対多、結合テーブルによる単方向」関係のレベルのどこかにあります。そう思います。
この落とし穴を見つけるのを手伝ってください。私は非常に感謝されます。必要に応じて、git を介してプロジェクトを共有できます。