第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Symfony 形式的多對(duì)多數(shù)組集合

Symfony 形式的多對(duì)多數(shù)組集合

PHP
慕森王 2024-01-19 10:16:50
我正在開(kāi)發(fā)一個(gè) Symfony 項(xiàng)目,其中有兩種類(lèi)型的 User Client 和 EmployeSpie,兩者都有自己的實(shí)體。當(dāng)您創(chuàng)建/編輯用戶(hù)時(shí),您可以將 EmployeSpie 鏈接到客戶(hù)端。這就是我的問(wèn)題所在,當(dāng)我編輯或創(chuàng)建用戶(hù)時(shí),我可以創(chuàng)建一個(gè)用戶(hù),但我的表中沒(méi)有存儲(chǔ)任何內(nèi)容來(lái)建立我的表 Client 和 EmployeSpie 之間的鏈接。這是我所做的:我的實(shí)體客戶(hù)有這樣的:class Client extends User{    /**     * @ORM\ManyToMany(targetEntity=EmployeSpie::class, mappedBy="clients", cascade={"persist"})     */    private $employeSpies;     /**     * @return Collection|EmployeSpie[]     */    public function getEmployeSpies(): Collection    {        return $this->employeSpies;    }    public function addEmployeSpy(EmployeSpie $employeSpy): self    {        if (!$this->employeSpies->contains($employeSpy)) {            $this->employeSpies[] = $employeSpy;            $employeSpy->addClientEmploye($this);        }        return $this;    }    public function removeEmployeSpy(EmployeSpie $employeSpy): self    {        if ($this->employeSpies->contains($employeSpy)) {            $this->employeSpies->removeElement($employeSpy);            $employeSpy->removeClientEmploye($this);        }        return $this;    }}和我的表 EmployeSpie:class EmployeSpie extends User{    /**     * @ORM\ManyToMany(targetEntity=Client::class, inversedBy="employeSpies")     */    private $clients;    /**     * @return Collection|Client[]     */    public function getClients(): Collection    {        return $this->clients;    }    public function addClient(Client $client): self    {        if (!$this->clients->contains($client)) {            $this->clients[] = $client;        }        return $this;    }    public function removeClient(Client $client): self    {        if ($this->clients->contains($client)) {            $this->clients->removeElement($client);        }        return $this;    }    public function __toString()    {        return $this->getPrenom()." ".$this->getNom();    }
查看完整描述

1 回答

?
LEATH

TA貢獻(xiàn)1936條經(jīng)驗(yàn) 獲得超7個(gè)贊

還需要一些其他的改變。


在我的客戶(hù)實(shí)體中,我必須更改:


? ? public function addEmployeSpy(EmployeSpie $employeSpy): self

? ? {

? ? ? ? if (!$this->employeSpies->contains($employeSpy)) {

? ? ? ? ? ? $this->employeSpies[] = $employeSpy;

? ? ? ? ? ? $employeSpy->addClientEmploye($this);

? ? ? ? }


? ? ? ? return $this;

? ? }

到 :


? ? public function addEmployeSpy(EmployeSpie $employeSpy): self

? ? {

? ? ? ? if (!$this->employeSpies->contains($employeSpy)) {

? ? ? ? ? ? $this->employeSpies[] = $employeSpy;

? ? ? ? ? ? $employeSpy->addClient($this);

? ? ? ? }


? ? ? ? return $this;

? ? }

刪除也是同樣的事情。


public function removeEmployeSpy(EmployeSpie $employeSpy): self

? ? {

? ? ? ? if ($this->employeSpies->contains($employeSpy)) {

? ? ? ? ? ? $this->employeSpies->removeElement($employeSpy);

? ? ? ? ? ? $employeSpy->removeClientEmploye($this);

? ? ? ? }


? ? ? ? return $this;

? ? }

到 :


public function removeEmployeSpy(EmployeSpie $employeSpy): self

? ? {

? ? ? ? if ($this->employeSpies->contains($employeSpy)) {

? ? ? ? ? ? $this->employeSpies->removeElement($employeSpy);

? ? ? ? ? ? $employeSpy->removeClient($this);

? ? ? ? }


? ? ? ? return $this;

? ? }

但在我的 ClientType 進(jìn)行其他更改之后:


? ? ? ? ? ? ->add('employeSpies', EntityType::class, array(

? ? ? ? ? ? ? ? 'class' => EmployeSpie::class ,

? ? ? ? ? ? ? ? 'by_reference' => false,

? ? ? ? ? ? ? ? 'label'? ? ?=> 'Sélectionnez les employés rattachés à ce client',

? ? ? ? ? ? ? ? 'expanded'? => false,

? ? ? ? ? ? ? ? 'multiple'? => true,

? ? ? ? ? ? ))

我需要添加'by_reference' => false,才能使其正常工作。


因此,Symfony 不會(huì)嘗試查找“setClient”方法,而是查找addClient方法


希望它可以幫助以后其他人:)


查看完整回答
反對(duì) 回復(fù) 2024-01-19
  • 1 回答
  • 0 關(guān)注
  • 155 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)