Twig and Symfony2 - Entity was not found

前端 未结 3 1766
慢半拍i
慢半拍i 2020-12-17 16:10

I have an entity that is related to some other entities. On the end, I have an object like tat:

paper.submission.authors

For some of the pa

3条回答
  •  醉梦人生
    2020-12-17 16:37

    In your entity you can made something like this:

    public function getSubmission(){
        if($this->Submission->getId()==0) return null;
        return $this->Submission;
    }
    

提交回复
热议问题