3

我正在尝试使用 json 格式的文本并将其转换为 xml。为此,我正在使用lift-json。根据此处的 lift-json 文档(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

4

1 回答 1

1

这里的问题是 Lift 3.0 改变了 lift-json 对map. JField曾经是 a JValue,但现在不再如此,因为它在概念上没有意义。要映射字段,您现在必须使用mapField. 更改mapmapField上面的代码就足够了,我也发布了一个 PR 来更新文档

(请注意,您通常会在 Lift Google 群组中获得更快的答案。)

于 2017-07-22T19:51:57.987 回答