有了这个例子,
import io.circe.generic.auto._
import io.circe.shapes._
import io.circe.parser._
import io.circe.syntax._
import shapeless._
case class A[T <: HList](name: String, params: T)
当我用非空 HList 实例化这个案例类时,没有问题:
scala> A("name", "a" :: HNil).asJson
res1: io.circe.Json =
{
"name" : "name",
"params" : [
"a"
]
}
但是,当这个 HList 只是 HNil 时,我收到以下错误:
scala> A("name", HNil).asJson
<console>:29: error: could not find implicit value for parameter encoder: io.circe.Encoder[A[shapeless.HNil.type]]
A("name", HNil).asJson
^
我读过这个问题,他们谈论案例对象编码器,但它不适用于 HNil(HNil 是案例对象),我在文档中看到了任何关于它的内容。仅供参考,我正在使用 circe 0.6.1
任何想法?