会话反序列化不使用实体ID

时间:2014-02-27 14:41:36

标签: session symfony serialization doctrine-orm

我有一个实现Serializable的实体,如下所示:

class Entity implements \Serializable
{
    /**
     * @var integer $id
     */
    protected $id;

    /**
     * @var string $name
     */
    protected $name;

    /**
     * @see \Serializable::serialize()
     */
    public function serialize()
    {
        return serialize(array(
            $this->id,
            $this->name,
        ));
    }

    /**
     * @see \Serializable::unserialize()
     */
    public function unserialize($serialized)
    {
        list (
            $this->id,
            $this->name
        ) = unserialize($serialized);
    }
}

在代码中的某个时刻,我从数据库中获取其中一个并使用

将其保存在会话中
// $entity is an instance of Entity
$this->getRequest()->getSession()->set('entity', $entity);

然后,如果我立即尝试用

返回实体
$entityFromSession = $this->getRequest()->getSession()->get('entity');

实体是一个不同的类,id为null,但name属性工作正常:

get_class($entityFromSession); // returns 'Proxies\__CG__\Bundle\Entity\Entity'
$entityFromSession->getId(); // returns null
$entityFromSession->getNome(); // returns the property correctly.

编辑:以下是我所做的事情\ Doctrine \ Common \ Util \ Debug :: dump($ entity):

object(stdClass)[779]
  public '__CLASS__' => string 'Proxies\__CG__\Bundle\Entity\Entity' (length=35)
  public '__IS_PROXY__' => boolean true
  public '__PROXY_INITIALIZED__' => boolean false
  public 'id' => int 44
  public 'name' => string 'Entity Name' (length=11)

什么? id信息就在那里(44是数据库中对象的id。这对我来说没有意义。

1 个答案:

答案 0 :(得分:1)

从会话存储中检索对象时,您已经分离了实体。你需要打电话:

$entityManager->merge($entity);