我的控制器中有一个方法,它从 JMSSerializerBundle 获取一个反序列化的对象并返回完整的对象,准备好被持久化。我这样做的原因是返回更新的对象,因此,当它被持久化时,它不会将所有内容重置为默认值。
运行时,此方法最终会ErrorException
在指示的行上抛出一个并将其放入我的日志中:Warning: ReflectionProperty::setValue() expects parameter 1 to be object, null given in C:\DevelopmentProjects\keobi-web\vendor\doctrine\lib\Doctrine\ORM\Mapping\ClassMetadata.php line 177 (uncaught exception) at C:\DevelopmentProjects\keobi-web\vendor\symfony\src\Symfony\Component\HttpKernel\Debug\ErrorHandler.php line 65
出于某种原因,该EntityManager
方法find
正在返回(根据get_class
)DefaultController
,该方法的控制器类。并且setFieldValue
说它是NULL。
让我感到困惑的一件事是,Doctrine\ORM\EntityNotFoundException
如果找不到实体,应该抛出。它没有被抛出。所以,它显然是在找到实体,而不是正确地返回它......
传入参数$data
是由 JSMSerializerBundle 反序列化的对象。$em
绝对是EntityManager
,$metadata
绝对是ClassMetadata
。
我在这里不知所措。不知道如何进行。
受保护的函数 processEntity($data)
{
$em = $this->getDoctrine()->getEntityManager(); $metadata = $em->getClassMetadata(get_class($data)); $fqcn = $元数据->getName(); $blankEntity = 新 $fqcn(); $id = 数组();$this->get('logger')->debug('Incoming object type: ' . get_class($data)); # Keobi\ModelBundle\Entity\User $this->get('logger')->debug('Blank entity type: ' . get_class($blankEntity)); # Keobi\ModelBundle\Entity\User $this->get('logger')->debug('FQCN: ' . $fqcn); # Keobi\ModelBundle\Entity\User foreach ($metadata->getIdentifierFieldNames() as $identifier) { $id[$identifier] = $metadata->getFieldValue($data, $identifier); if (!$id[$identifier]) { $this->get('logger')->debug(sprintf("Identifer '%s' missing. Assuming the object is new.", $identifier)); return $data; } } $entity = $em->find($metadata->getName(), $id); $this->get('logger')->debug(get_class($entity)); # Keobi\RestAPIBundle\DefaultController foreach ($metadata->getFieldNames() as $field) { $value = $metadata->getFieldValue($data, $field); $default = $metadata->getFieldValue($blankEntity, $field); if ($value <> $default) { $metadata->setFieldValue($entity, $field, $value); # <- throws ErrorException $this->get('logger')->debug(sprintf("Updated field '%s' in %s", $field, get_class($entity))); } } return $entity;
}