我想解析帶有特殊字符的JSON字符串的屬性名稱(點)。用Scala升降解析JSON
這就是我想:
//Json parser objects
case class SolrDoc(`rdf.about`:String, `dc.title`:List[String],
`dc.creator`:List[String], `dc.dateCopyrighted`:List[Int],
`dc.publisher`:List[String], `dc.type` :String)
case class SolrResponse(numFound:String, start:String, docs: List[SolrDoc])
val req = url("http://localhost:8983/solr/select") <<? Map("q" -> q)
var search_result = http(req ># { json => (json \ "response") })
var response = search_result.extract[SolrResponse]
即使我的JSON字符串包含所有字段的值,這是我得到的錯誤:
Message: net.liftweb.json.MappingException: No usable value for docs
No usable value for rdf$u002Eabout
Did not find value which can be converted into java.lang.String
我懷疑它與名稱上的點有關,但到目前爲止我還沒有設法使其工作。
謝謝!
這是從我LiftProject.scala文件的摘錄:
"net.databinder" % "dispatch-http_2.8.1" % "0.8.6",
"net.databinder" % "dispatch-http-json_2.8.1" % "0.8.6",
"net.databinder" % "dispatch-lift-json_2.8.1" % "0.8.6"
DataBinder的拉動和舊版本的電梯JSON的,有關於它的升降郵件列表上線,我現在不能找到它但會在今天晚些時候發佈鏈接。 – fmpwizard
試試這個http://osdir.com/ml/liftweb/2011-10/msg00806.html – fmpwizard