通用反序列化:对象的JSON ID值

时间:2015-10-28 16:54:40

标签: php json symfony jmsserializerbundle

我使用的是什么:

我使用JMSSerializerBundle从POST请求中反序列化JSON object

问题描述:

JSON中的一个vaules是Id。我希望在反序列化之前用正确的对象替换此Id。

不幸的是,JMSSerializerBundle没有@preDeserializer注释。

我面临的问题(如果有@preDeserializer注释,我会遇到的问题)是我想为我的所有实体创建一个通用函数。

问题:

如何以最通用的方式将Id替换为相应的object

1 个答案:

答案 0 :(得分:2)

你也像我一样(使用Doctrine)进行自己的水合作用:

<强>解决方案

IHydratingEntity是我所有实体实现的接口。 hydrate函数通常用于我的BaseService。参数是实体和json对象。

在每次迭代时,函数将测试方法是否存在,然后它将调用reflection函数来检查参数的方法(setter)是否也实现IHydratingEntity。 如果是这种情况,我使用id通过Doctrine ORM从数据库中获取实体。

我认为可以优化此流程,因此请务必分享您的想法!

protected function hydrate(IHydratingEntity $entity, array $infos)
{
    #->Verification
    if (!$entity) exit;
    #->Processing
    foreach ($infos as $clef => $donnee)
    {
        $methode = 'set'.ucfirst($clef);
        if (method_exists($entity, $methode))
        {
            $donnee = $this->reflection($entity, $methode, $donnee);
            $entity->$methode($donnee);
        }
    }
}

public function reflection(IHydratingEntity $entity, $method, $donnee)
{
    #->Variable declaration
    $reflectionClass = new \ReflectionClass($entity);
    #->Verification
    $idData = intval($donnee);
    #->Processing
    foreach($reflectionClass->getMethod($method)->getParameters() as $param)
    {
        if ($param->getClass() != null)
        {
            if ($param->getClass()->implementsInterface(IEntity::class))
                #->Return
                return $this->getDoctrine()->getRepository($param->getClass()->name)->find($idData);
        }
    }
    #->Return
    return $donnee;
}