繁体   English   中英

Symfony /序列化器在对象中规范化对象

[英]Symfony/serializer Normalize Object in Object

大家好,我需要一点帮助,但我没有找到关于递归标准化对象的响应

    class User
    {
        public $email;
        public $userId;
        public $userName;
        /**
         * @var CustomAttributes
         */
        public $customAttributes;
    }
    class CustomAttributes
    {
        public $someStuff;
        public $someStuffHere;
    }

我只想通过symfony组件的normalize()将其转换为数组snake_case

$normalizer = new PropertyNormalizer(null, new CamelCaseToSnakeCaseNameConverter());
$user_normalize = $normalizer->normalize($user);

但是我有这个错误

在AbstractObjectNormalizer.php行129中:无法规范化属性“ customAttributes”,因为注入的序列化程序不是规范化程序

谢谢你的帮助

这是因为您忘记添加$serializer = new Serializer([$normalizer])位。 请参阅下面的工作示例。

实施

use App\User;
use App\CustomAttributes;
use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory;
use Symfony\Component\Serializer\NameConverter\CamelCaseToSnakeCaseNameConverter;
use Symfony\Component\Serializer\Normalizer\PropertyNormalizer;
use Symfony\Component\Serializer\Serializer;

class SnakeCaseUtility
{
    public function convert(): array
    {
        $classMetadataFactory = null;
        $nameConverter = new CamelCaseToSnakeCaseNameConverter();

        $normalizer = new PropertyNormalizer($classMetadataFactory, $nameConverter);
        $serializer = new Serializer([$normalizer]);

        $normalizedUser = $serializer->normalize($this->getUser(), 'json');

        return $normalizedUser;
    }

    private function getUser(): User
    {
        $customAttributes = new CustomAttributes();
        $customAttributes->someStuff = 'Some stuff';
        $customAttributes->someStuffHere = 'Some stuff here';

        $user = new User();
        $user->userId = 123;
        $user->userName = 'Hello World';
        $user->email = 'hello@world.com';
        $user->customAttributes = $customAttributes;

        return $user;
    }
}

测试

use App\SnakeCaseUtility;
use PHPUnit\Framework\TestCase;

class SnakeCaseUtilityTest extends TestCase
{
    public function testSnakeCase(): void
    {
        $expected = [
            'email' => 'hello@world.com',
            'user_id' => 123,
            'user_name' => 'Hello World',
            'custom_attributes' => [
                'some_stuff' => 'Some stuff',
                'some_stuff_here' => 'Some stuff here',
            ]
        ];

        $this->assertSame($expected, (new SnakeCaseUtility())->convert());
    }
}

结果

$ vendor/bin/phpunit --filter SnakeCaseUtilityTest tests/SnakeCaseUtilityTest.php 
PHPUnit 7.5.1 by Sebastian Bergmann and contributors.

.                                                                   1 / 1 (100%)

Time: 83 ms, Memory: 4.00MB

OK (1 test, 1 assertion)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM