我有一个字段,我想根据该 Json 对象上的值将其反序列化为密封子类的实例。
[
{
"id": 1L,
"some_array": [],
"my_thing": {
"type": "sealed_subclass_one",
"other_thing": {
"thing": "thing is a string"
}
}
}, {
"id": 2L,
"some_array": [],
"my_thing": {
"type": "sealed_subclass_two",
"other_thing": {
"other_thing": "other_thing is a string too"
}
}
},
]
响应模型:
@Serializable
data class MyResponse(
@SerialName("id")
val id: Long
@SerialName("some_array")
val someArray: Array<Something>
@SerialName("my_thing")
val myThing: MySealedClassResponse
)
我的密封类
@Serializable
sealed class MySealedClassResponse : Parcelable {
@Serializable
@SerialName("type")
data class SealedSubclassOne(
val thing: String
) : MySealedClassResponse()
@Serializable
@SerialName("type")
data class SealedSubclassTwo(
val otherThing: String
) : MySealedClassResponse()
}
就目前而言,我得到了一个序列化异常,因为序列化程序不知道该怎么做:
kotlinx.serialization.SerializationException:sealed_subclass_one 未在 com.myapp.MyResponse 类的范围内注册多态序列化
是否有一种简单的方法来注册 的值,type
以便在没有自定义序列化程序的情况下进行反序列化?