- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下案例类:
final case class Camel(firstName: String, lastName: String, waterPerDay: Int)
object CirceImplicits {
import io.circe.syntax._
import io.circe.generic.semiauto._
import io.circe.{Encoder, Decoder, Json}
import io.circe.generic.extras.Configuration
implicit val customConfig: Configuration =
Configuration.default.withSnakeCaseMemberNames.withDefaults
implicit lazy val camelEncoder: Encoder[Camel] = deriveEncoder
implicit lazy val camelDecoder: Decoder[Camel] = deriveDecoder
}
val camel = Camel(firstName = "Camelbek", lastName = "Camelov", waterPerDay = 30)
private val camelJ = Json.obj(
"firstName" -> Json.fromString("Camelbek"),
"lastName" -> Json.fromString("Camelov"),
"waterPerDay" -> Json.fromInt(30)
)
"Decoder" must "decode camel types" in {
camelJ.as[Camel] shouldBe Right(camel)
}
val camel = Camel(firstName = "Camelbek", lastName = "Camelov", waterPerDay = 30)
private val camelJ = Json.obj(
"first_name" -> Json.fromString("Camelbek"),
"last_name" -> Json.fromString("Camelov"),
"water_per_day" -> Json.fromInt(30)
)
"Decoder" must "decode camel types" in {
camelJ.as[Camel] shouldBe Right(camel)
}
0.10.0
最佳答案
解决方案 1
Circe 从您的案例类实例中获取字段名称并使用游标遍历 JSON,尝试获取每个字段名称的值并尝试将其转换为您想要的类型。
这意味着您的解码器将无法处理这两种情况。
解决这个问题的方法是写两个解码器:
val decoderDerived: Decoder[Camel] = deriveDecoder
val decoderCamelSnake: Decoder[Camel] = (c: HCursor) =>
for {
firstName <- c.downField("first_name").as[String]
lastName <- c.downField("last_name").as[String]
waterPerDay <- c.downField("water_per_day").as[Int]
} yield {
Camel(firstName, lastName, waterPerDay)
}
implicit val decoder: Decode[Camel] = decoderDerived or decoderCamelSnake
@ConfiguredJsonCodec
来自
"io.circe" %% "circe-generic-extras" % circeVersion
包裹。请注意,要使用此注释,您还需要包含天堂编译器插件。
addCompilerPlugin(
"org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full
)
@ConfiguredJsonCodec
case class User(
firstName: String,
lastName: String
)
object User {
implicit val customConfig: Configuration = Configuration.default.withSnakeCaseMemberNames
}
val userJson = User("John", "Doe").asJson
println(userJson)
// { "first_name" : "John", "last_name" : "Doe" }
val decodedUser = decode[User](userJson.toString)
println(decodedUser)
// Right(User("John", "Doe"))
关于scala - Circe 从蛇盒键解析 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55867077/
我正在尝试为菊石 REPL 创建一个 predef.sc 文件。这是我写的 val fs2Version = "2.2.2" val circeVersion = "0.13.0" // fs2 in
我正在尝试为两个案例类生成编码器和解码器: object EventBusCases { case class ValuationRequest(function: RequestValue =
我已经为 JSON 表示定义了几个 case 类,但我不确定我是否做得正确,因为有很多嵌套的 case 类。 spec、meta 等实体属于 JSONObject 类型以及自定义对象本身。 这是我定义
为什么我得到错误 could not find Lazy implicit value of type io.circe.generic.decoding.DerivedDecoder[A$A6.th
我正在尝试将一些类编码为 json 字符串,但是无论我尝试什么,我的类似乎都无法为我正在使用的案例类找到隐式编码器。 这是我能够精简到的最小示例。 import io.circe._ import i
我以前见过类似的问题,但没有一个有效。我认为他们会问一些不同的问题,所以我在这里问。 我在一个文件中有这样的东西: sealed trait Thing case class SomeThing()
我的目标是将 JSON 转换为以下模型: case class Container(typeId: Int, timestamp: Long, content: Content) sealed tra
我想用 Circe 解码以下 ADT: sealed trait PaymentType object PaymentType extends EnumEncoder[PaymentType] {
我想将案例类的 Array[Byte] 字段编码为 Base64 字符串。出于某种原因,Circe 没有使用默认编解码器选择我的编解码器,而是将字节数组转换为 json 整数数组。 我应该怎么做才能修
我正在尝试使用 scala json 库 Circe,将它包装在一个简单的 trait 中以提供与 json 的转换,我有以下内容: import io.circe.generic.auto._ im
我试图将“5m”或“5s”或“5ms”形式的字符串解码为 FiniteDuration 类型的对象,分别为 5.minutes、5.seconds、5.milliseconds。 我正在尝试为涉及 F
当字段可以具有不同的原始值类型时,我在解析 json 时遇到问题。例如,我可以得到 json: { "name" : "john", "age" : 31 } 或者它可以是这种形式: {
我有一些 json,其中包含一些字段,这些字段被压缩为 bson-ish 格式,如 {"foo.bar" : "bash"} .我想将其转换为以下表示 {"foo" : { "bar" : "bash
我正在尝试实现类似的东西 object Claims { import shapeless._ import shapeless.labelled.FieldType import io.
我正在尝试使用 Circe 对对象列表进行编码,看起来类似于: val test = Seq(MyObject("hello", None, 1, 2, None) 我正在尝试使用 Circe 解析它
我的问题有点棘手。我有一个看起来像这样的案例类 case class Foo( id: String, name: String, field1: Boolean, f
我有以下案例类: final case class Camel(firstName: String, lastName: String, waterPerDay: Int) 和circe配置: obj
有没有办法将单个 None 字段序列化为“null”? 例如: // When None, I'd like to serialize only f2 to `null` case class Exa
我是 Scala 新手,正在使用 circe 来建模和序列化一些 API 响应。我发现自己使用以下样板 sealed trait SomeTrait object SomeTrait { im
可以有一个如下所示的类: case class Amount(value: Int) case class Data(insurance: Option[Amount], itemPrice: Amo
我是一名优秀的程序员,十分优秀!