我使用JMSSerializerBundle从POST请求中反序列化JSON object
。
我JSON
中的一个vaules是Id
。我希望在反序列化之前用正确的对象替换此Id。
不幸的是,JMSSerializerBundle
没有@preDeserializer
注释。
我面临的问题(如果有@preDeserializer注释,我会遇到的问题)是我想为我的所有实体创建一个通用函数。
如何以最通用的方式将Id
替换为相应的object
?
答案 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;
}