ドキュメントとドキュメントの表紙画像の両方のファイルをアップロードして DB に保存したいと考えています。ただし、ファイル列しかありません。2枚目の画像は入っていません。
これは私のエンティティクラスがどのように見えるかです:
class Document
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="document_title", type="string", length=255)
*/
private $documentTitle;
/**
* @ORM\Column(type="string", length=255)
* @var string
*/
private $fileName;
/**
*@Vich\UploadableField(mapping="user_documents", fileNameProperty="fileName")
* @var File
*/
private $documentFile;
/*
* @ORM\Column(type="string", length=255)
* @var string
*/
private $coverName;
/**
*@Vich\UploadableField(mapping="documents_covers", fileNameProperty="coverName")
* @var File
*/
private $documentCover;
/**
* @ORM\ManyToOne(targetEntity="Foo\UserBundle\Entity\User", inversedBy="documents")
**/
private $owner;
}
ここで、私のセッターは次のようになります。
public function setDocumentFile(File $documentFile = null)
{
$this->documentFile = $documentFile;
if ($documentFile){
$this->updatedAt = new \DateTime('now');
}
return $this;
}
/**
* @param File $documentCover
*/
public function setDocumentCover(File $documentCover = null)
{
$this->documentCover = $documentCover;
}
そして、私の vich アップローダの設定:
vich_uploader:
db_driver: orm
storage: file_system
mappings:
documents_covers:
uri_prefix: %app.path.documents_covers%
upload_destination: %kernel.root_dir%/../web/uploads/images/documents
namer: vich_uploader.namer_uniqid
user_documents:
uri_prefix: %app.path.user_documents%
upload_destination: %kernel.root_dir%/../web/uploads/files/user/documents
namer: vich_uploader.namer_uniqid
そこのディレクトリを調べるとそこにファイルが存在しますが、DB を調べると $documentFile しかありません。 文書表データ