作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个 objects
具有 Parent
-Child
关系。对于每个 object
,我都有一个自定义的 normalizer
,如下所示:
use Symfony\Component\Serializer\Normalizer\scalar;
class ChildNormalizer
{
public function normalize($object, $format = null, array $context = array())
{
return [
"name" => $object->getName(),
"age" => $object->getAge(),
...
];
}
public function supportsNormalization($data, $format = null)
{
return ($data instanceof Child) && is_object($data);
}
}
use Symfony\Component\Serializer\Encoder\NormalizationAwareInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
use Symfony\Component\Serializer\Normalizer\scalar;
class ParentNormalizer implements NormalizerInterface, NormalizationAwareInterface
{
use NormalizerAwareTrait;
public function normalize($object, $format = null, array $context = array())
{
return [
...
"children" => array_map(
function ($child) use ($format, $context) {
return $this->normalizer->normalize($child);
}, $object->getChildren()
),
...
];
}
public function supportsNormalization($data, $format = null)
{
return ($data instanceof Parent) && is_object($data);
}
}
当我尝试序列化 Parent
object
进而规范化 Child
object
时,我得到以下信息异常:
Call to a member function normalize() on null
我是否错过了配置步骤,或者我到底做错了什么?
最佳答案
解决了这个问题,我实现了错误的 *AwareInterface
。
如果 ParentNormalizer
实现了 NormalizerAwareInterface
而不是 NormalizationAwareInterface
,则代码可以完美运行。
use Symfony\Component\Serializer\Encoder\NormalizerAwareInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
use Symfony\Component\Serializer\Normalizer\scalar;
class ParentNormalizer implements NormalizerInterface, NormalizerAwareInterface
{
...
}
关于symfony - 使用 NormalizerAwareTrait 的 Normalizer 空引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44777531/
我有两个 objects 具有 Parent-Child 关系。对于每个 object,我都有一个自定义的 normalizer,如下所示: ChildNormalizer.php use Symfo
我是一名优秀的程序员,十分优秀!