GridFSを使用してそのドキュメントに複数の画像を含める必要があるユーザードキュメントがあります。GridFSを使用してファイルを保存できません。
これが私のユーザードキュメントです:
namespace Main\UserBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/**
*@MongoDB\Document(db="mydb", collection="users")
*/
class User
{
/**
* @MongoDB\Id
*/
protected $id;
/** @MongoDB\EmbedMany(targetDocument="Asset") */
public $assets = array();
public function __construct()
{
$this->assets = new \Doctrine\Common\Collections\ArrayCollection();
}
/**
* Get id
*
* @return id $id
*/
public function getId()
{
return $this->id;
}
/**
* Add assets
*
* @param Main\ClassifiedBundle\Document\Asset $assets
*/
public function addAsset(\Main\ClassifiedBundle\Document\Asset $asset)
{
$this->assets[] = $asset;
}
/**
* Get assets
*
* @return Doctrine\Common\Collections\Collection $assets
*/
public function getAsset()
{
return $this->assets;
}
}
これが私のアセットファイルです:
namespace Main\UserBundle\Document;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/** @MongoDB\EmbeddedDocument */
class Asset
{
/**
* @MongoDB\Id
*/
public $id;
/** @MongoDB\Field */
public $name;
/** @MongoDB\File */
public $file;
/** @MongoDB\Field */
public $uploadDate;
/** @MongoDB\Field */
public $length;
/** @MongoDB\Field */
public $chunkSize;
/** @MongoDB\Field */
public $md5;
public function getId()
{
return $this->id;
}
public function setName($name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
public function getFile()
{
return $this->file;
}
public function setFile($file)
{
$this->file = $file;
}
}
今私のコントローラーで私は次のことをしようとしています:
$dm = $this->get('doctrine.odm.mongodb.document_manager');
$user = $dm->getRepository('MainUserBundle:User')
->find(1); //I already have a user document with id 1
$asset = new Asset();
$asset->setName('Test image');
$asset->setFile($uploadedFile->getPathname()); //I have verified that this is a valid image
$user->addAsset($asset);
var_dump($user);
$dm->persist($user);
$dm->flush();
ログに表示されるエラーは次のとおりです。
MongoException: zero-length keys are not allowed, did you use $ with double quotes? (uncaught exception)
私はそれを次の場所で入手します:
myapp.com/vendor/doctrine-mongodb/lib/Doctrine/MongoDB/Collection.php line 203
また、ドキュメントは保存されません。私は何が欠けていますか?私はmongoodmサイトにあったすべてのステップに従いました。??