0
當我嘗試將項目添加到assication試圖將項目添加到協會(ArrayCollection的):調用未定義的方法XXXProxy ::添加
/**
* In Note class
* @var \Doctrine\Common\Collections\ArrayCollection
*
* @ORM\ManyToMany(targetEntity="User")
*/
protected $responders;
// in controller: line 80, where error occurs
$note->getResponders()->add($user);
我得到
電話未定義的方法代理... UserBundleEntityUserProxy :: add()in ... \ Controller \ NotesController.php on line 80
什麼錯了?
UPDATE
我注意到它尋找UserProxy
下add方法,它不應該是在NoteProxy
?由於響應者在Note
班?