使用 JMS Serializer 反序列化混合类型的值

Deserialize value of mixed type with JMS Serializer

我在使用 JMS 序列化器时遇到了一些问题 - 我需要反序列化一个脏的 JSON,它具有 score 值的混合类型。例如:

{ label: "hello", score: 50 }

{ label: "hello", score: true }

如果我输入 @Type("int"),当值为 boolean 时,它会被反序列化为 10...
我想在值为 true 时得到 100,在值为 false 时得到 0
我如何在反序列化时管理这种混合类型?

我的class:

class Lorem 
{
    /**
     * @Type("string")
     * @SerializedName("label")
     * @var string
     */
    protected $label;

    /**
     * @Type("int")
     * @SerializedName("score")
     * @var int
     */
    protected $score;
}

Type annotation 将转换值,也许您可​​以定义一个类型的数组,请参阅 doc 类似的东西 Type("array<string>,array< boolean>")

您可以编写您的 custom handler 定义一个新的 my_custom_type(或更好地命名 :),然后您可以在注释中使用它。

像这样的东西应该可以工作:

class MyCustomTypeHandler implements SubscribingHandlerInterface 
{
    /**
     * {@inheritdoc}
     */
    public static function getSubscribingMethods()
    {
        return [
            [
                'direction' => GraphNavigator::DIRECTION_DESERIALIZATION,
                'format' => 'json',
                'type' => 'my_custom_type',
                'method' => 'deserializeFromJSON',
            ],
        ];
    }

    /**
     * The de-serialization function, which will return always an integer.
     *
     * @param JsonDeserializationVisitor $visitor
     * @param int|bool $data
     * @param array $type
     * @return int
     */
    public function deserializeFromJSON(JsonDeserializationVisitor $visitor, $data, array $type)
    {
        if ($data === true) {
            return 100;
        }
        if ($data === false) {
            return 0;
        }
        return $data;
    }
}