代码片段中的编译错误 lift-json 3.0.1 将 json 数组转换为逗号分隔字符串

Compilation error in code snippet by lift-json 3.0.1 to convert json arrays into comma-separated-strings

我正在尝试使用 json 格式的文本并将其转换为 xml。我正在使用 lift-json for that matter. According to the lift-json documentation here (def toXml),我应该能够使用以下方法将 json 数组的元素转换为逗号分隔的字符串:

toXml(json map {
  case JField("nums",JArray(ns)) => JField("nums",JString(ns.map(_.values).mkString(",")))
  case x => x
})

所以我写了下面的代码:

case work: ActiveMQTextMessage => 
  println("work.getText: " + work.getText)
  val workAsJson: JValue = parse(work.getText)
  val processedArraysJson = workAsJson map {
    case JField(label, JArray(ns)) => JField(label, JString(ns.map(_.values).mkString(",")))
    case x => x
  }
  val workAsXml: scala.xml.NodeSeq = toXml(processedArraysJson)

但由于某些原因它无法编译。

它报告了两个错误:

Error:(55, 14) constructor cannot be instantiated to expected type;
 found   : net.liftweb.json.JsonAST.JField
 required: net.liftweb.json.JsonAST.JValue
        case JField(label, JArray(ns)) => JField(label, JString(ns.map(_.values).mkString(",")))

Error:(55, 49) type mismatch;
 found   : net.liftweb.json.JsonAST.JField
 required: net.liftweb.json.JsonAST.JValue
        case JField(label, JArray(ns)) => JField(label, JString(ns.map(_.values).mkString(",")))

注意,我使用的lift-json版本是:

"net.liftweb" % "lift-json_2.12" % "3.0.1"

使用 scala 2.12

这里的问题是 Lift 3.0 改变了 lift-json 对 map 用法的一些不一致之处。 JField 曾经是 JValue,但现在已不再如此,因为它在概念上没有意义。要映射字段,您现在必须使用 mapField。把上面代码中的map改成mapField应该就可以了,我也有issued a PR to update the documentation

(请注意,您通常会在 the Lift Google group 上更快地得到答案。)