描述
我在 iOS 和 Android 的多平台库中使用 Kotlinx 序列化库来处理 HTTP 请求。但是当我在 iOS 上使用我的请求功能时出现此消息,有解决方法吗?我函数中的哪一行调用了未实现的函数?
kotlin.NotImplementedError: An operation is not implemented: 由于缺少反射,从 KClass 获取序列化程序在本机上不可用。.serializer() 直接在可序列化类上使用。
重现
这是我写的函数
@ImplicitReflectionSerializer
private suspend fun authenticationRequest(email: String, password: String): Either<ErrorMessage, Authentication> {
return try {
val response: Authentication = client.post {
url("${Constants.API_URL}/security/login")
body = jsonSerializer.write(LoginType(email, password))
}
Either.Right(response)
} catch (e: ResponseException) {
val message = Json.parse<ErrorMessage>(e.response.content.readUTF8Line() ?: "").apply {
codeHttp = e.response.status.value
reason = e.response.status.description
}
Either.Left(message)
}
}
环境
Kotlin 版本:1.3.31
Kotlinx 序列化版本:0.11.0
Kotlin 平台:iOS 和 Android
摇篮版本:5.1.1