エンティティ/ユーザー
namespace My\SampleBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* @ORM\Entity
* @ORM\Table(name="fos_user")
*/
class User extends \FOS\UserBundle\Entity\User
{
/** @ORM\Id @ORM\Column(type="integer") @ORM\GeneratedValue(strategy="AUTO") */
protected $id;
/**
* @ORM\OneToOne(targetEntity="Invitation", inversedBy="user")
* @ORM\JoinColumn(referencedColumnName="code")
* @Assert\NotNull(message="Your invitation is wrong")
*/
protected $invitation;
public function setInvitation(Invitation $invitation)
{
$this->invitation = $invitation;
}
public function getInvitation()
{
return $this->invitation;
}
}
エンティティ/招待状
namespace My\SampleBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/** @ORM\Entity */
class Invitation
{
/** @ORM\OneToOne(targetEntity="User", mappedBy="invitation", cascade={"persist", "merge"}) */
protected $user;
/** @ORM\Id @ORM\Column(type="string", length=6) */
protected $code;
/** @ORM\Column(type="string", length=256) */
protected $email;
/**
* When sending invitation be sure to set this value to `true`
*
* It can prevent invitations from being sent twice
*
* @ORM\Column(type="boolean")
*/
protected $sent = false;
public function __construct()
{
// generate identifier only once, here a 6 characters length code
$this->code = substr(md5(uniqid(rand(), true)), 0, 6);
}
public function getCode()
{
return $this->code;
}
public function getEmail()
{
return $this->email;
}
public function setEmail($email)
{
$this->email = $email;
}
public function isSent()
{
return $this->sent;
}
public function send()
{
$this->sent = true;
}
public function getUser()
{
return $this->user;
}
public function setUser(User $user)
{
$this->user = $user;
}
/**
* Set code
*
* @param string $code
* @return Invitation
*/
public function setCode($code)
{
$this->code = $code;
return $this;
}
/**
* Set sent
*
* @param boolean $sent
* @return Invitation
*/
public function setSent($sent)
{
$this->sent = $sent;
return $this;
}
/**
* Get sent
*
* @return boolean
*/
public function getSent()
{
return $this->sent;
}
}
エラー
関連付けフィールド 'My\SampleBundle\Entity\Invitation#user' は関連付けの逆側であるため、検索できません。Find メソッドは、サイド アソシエーションを所有している場合にのみ機能します。500 内部サーバー エラー - ORMException
私はちょうどドキュメンテーションを行った段階です。
バンドルの表示は正常です。しかし、登録フォームを送信するとエラーになってしまいました。
何か助けはありますか?
編集:
実は、最初は「inversedBy」を設定していました。
事前質問です。
Symfony2 FOSUserBundle Invitation : 'inversedBy' マッピング エラー
表面的には機能します。ただし、マッピング エラーはプロファイラーによって表示されます。
My\SampleBundle\Entity\Invitation# に必要な「inversedBy」属性が含まれていません。
ということで、アドバイスを受けて変更しました。どう考えたらいいのかわからない。