2012-03-03 61 views
6

我在DOctrine中創建這樣的條目。我正在嘗試將網頁添加到頁面。 這是我的實體: 我的實體:學說2 - 堅持錯誤 - 警告:spl_object_hash()期望參數1是對象,NULL給出

<?php 

namespace App\Entity; 
use Doctrine\Common\Collections\ArrayCollection; 
/** 
* @Entity(repositoryClass="App\Repository\Page") 
* @Table(name="page") 

*/ 
class Page 
{ 
    /** 
    * @Id @Column(type="integer", name="p_id") 
    * @GeneratedValue 
    */ 
    private $p_id; 
    /** @Column(type="string", name="p_title") */ 
    private $p_title; 
    /** @Column(type="datetime", name="p_created") */ 
    private $p_created_at; 
    /** @Column(type="datetime", name="p_updated_at") */ 
    private $p_updated_at; 
    /** @Column(type="text", name="p_abstract") */ 
    private $p_abstract; 
    /** @Column(type="text", name="p_fulltext", nullable=false) */ 
    private $p_fulltext; 
    /** @Column(type="string", name="p_author", nullable=true) */ 
    private $p_author; 
    /** @Column(type="string", name="p_url",nullable=true) */ 
    private $p_url; 
    /** @Column(type="string", name="p_meta_title",nullable=true) */ 
    private $p_meta_title; 
    /** @Column(type="string", name="p_meta_keywords",nullable=true) */ 
    private $p_meta_keywords; 
    /** @Column(type="string", name="p_meta_description",nullable=true) */ 
    private $p_meta_description; 
     /** @Column(type="string", name="p_status") */ 
    private $p_status; 
    /** @Column(type="string", name="p_weight") */ 
    private $p_weight; 
    /** 
    * @ManyToOne(targetEntity="User", inversedBy="pages") 
    * @JoinColumn(name="p_u_id", referencedColumnName="u_id") 
    */ 
    private $user; 

    /** 
    * @OneToMany(targetEntity="App\Entity\Page\Basket", mappedBy="page", cascade={"persist", "remove"}) 
    */ 
    protected $pageBaskets; 


    public function __construct() 
    { 
     $this->pageBaskets = new ArrayCollection(); 
     $this->pageMedia = new ArrayCollection(); 
    } 
    public function __get($property) 
    { 
     return $this->property; 
    } 
    public function __set($property,$value) 
    { 
     $this->$property = $value; 
    } 
    public function getPageMedia() 
    { 
     return $this->pageMedia; 
    } 
    public function setUser(\App\Entity\User $user) 
    { 
     $this->user = $user; 
    } 
    public function getMedias() 
    { 
     return $this->pageMedia; 
    } 
    public function getPageBaskets() 
    { 
     return $this->pageBaskets; 
    } 
    /** 
    * Set Page Values 
    * @var array $values 
    */ 
    public function setPageProperties(array $values) 
    { 
     $this->p_updated_at = new \DateTime("now"); 
     $this->p_title = $values['p_title']; 
     $this->p_abstract = $values['p_abstract']; 
     $this->p_meta_title = $values['p_meta_title']; 
     $this->p_meta_keywords = $values['p_meta_keywords']; 
     $this->p_meta_description = $values['p_meta_description']; 
     $this->p_url = $values['p_url']; 
     $this->p_fulltext = $values['p_abstract']; 
     $this->p_author = ''; 
     $this->p_status = 1; 

    } 
    public function getSimpleValues() 
    { 
     return array(
      'p_updated_at' => $this->p_updated_at, 
      'p_title' => $this->p_title, 
      'p_abstract' => $this->p_abstract, 
      'p_meta_title' => $this->p_meta_title, 
      'p_meta_keywords' => $this->p_meta_keywords, 
      'p_meta_description' => $this->p_meta_description, 
      'p_url' => $this->p_url, 
      'p_fulltext' => $this->p_fulltext, 
      'p_author' => $this->p_author 
     ); 
    } 
} 

?> 


<?php 
namespace App\Entity\Page; 
use Doctrine\Common\Collections\ArrayCollection; 

/** 
* @Entity 
* @Table(name="page_basket") 

*/ 
class Basket 
{ 
    /** 
    * @Id @Column(type="integer", name="pb_id") 
    * @GeneratedValue 
    */ 
    private $pb_id; 
    /** 
    * @ManyToOne(targetEntity="Entity\Page",) 
    * @JoinColumn(name="pb_id", referencedColumnName="p_id") 
    */ 
    private $page; 


    public function __construct() 
    { 

    } 
    public function __get($property) 
    { 
     return $this->property; 
    } 
    public function __set($property,$value) 
    { 
     $this->$property = $value; 
    } 
    public function setPage($page) 
    { 
     $this->page = $oszpage; 
    } 
} 

?> 

但是,在正在做這樣的東西:

$page->getPageBaskets()->add($basket); 

即時得到: 警告:spl_object_hash()預計參數1是對象,空給出

我在做什麼錯了?

+0

同樣的問題[這裏](http://stackoverflow.com/questions/21780016/spl-object-hash-expects-parameter-1-to-be-object-null-given)除了我已經得到當我嘗試檢索主要實體時出錯!你有沒有找到解決問題的辦法? – 2014-02-14 13:20:55

回答

1

最好遵循手冊中的示例,直到您變得更加舒適。放下魔法_ get/ _set方法。 D2依靠攔截方法調用來做它的東西。將數組集合看作數組,並構建與您的實體進行交互的特定方法。

具體來說:

public function addPageBasket($pageBasket) 
{ 
    $this->pageBaskets[] = $pageBasket; 
} 
... 
$page->addPageBasket($pageBasket); 

PS。對於你的特定問題,最有可能的$籃子不是一個對象。

+1

這對我不起作用,我甚至不使用魔法獲取和設置方法。我仍然得到同樣的錯誤 – 2014-02-14 12:54:26

相關問題