1

我的控制器中有一个方法,它从 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_classDefaultController,该方法的控制器类。并且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;  

}

4

2 回答 2

1

看起来 Doctrine2 有问题。我将它更新为Github repo的最新 HEAD 提交。令我困惑的是,这种方法实际上在不久前奏效了。

找不到解决问题的确切提交,但在撰写本文时,提交是93cef612701b9e8caaf43c745978cd4fbd9d4e4e

于 2012-07-18T18:28:17.777 回答
0
$entity = $em->find($metadata->getName(), $id);

您需要指定搜索的存储库,例如:

$entity = $em->getRepository('EntitiesBundle:Entity')->find(...)
于 2012-07-18T17:59:18.130 回答