繁体   English   中英

如何使用Play Framework解析此JSON?

[英]How to parse this JSON using Play Framework?

我从Web服务返回了以下JSON:

{
  "hits": [
    {
      "created_at": "2016-02-01T15:01:03.000Z",
      "title": "title",
      "num_comments": 778,
      "parent_id": null,
      "_tags": [
        "story",
        "author",
        "story_11012044"
      ],
      "objectID": "11012044",
      "_highlightResult": {
        "title": {
          "value": "title",
          "matchLevel": "full",
          "matchedWords": [
            "title"
          ]
        },
        "author": {
          "value": "author",
          "matchLevel": "none",
          "matchedWords": [

          ]
        },
        "story_text": {
          "value": "Please lead",
          "matchLevel": "none",
          "matchedWords": [

          ]
        }
      }
    }
  ]
}

我正在尝试使用Play Framework中的JSON解析库来解析它。 我有以下代码:

import play.api.libs.functional.syntax._
import play.api.libs.json._
case class Post(id: Long, date: String, count: Int)
object Post {

  implicit val postFormat = Json.format[Post]
  implicit val writes: Writes[Post] = (
    (JsPath \ "id").write[Long] and
    (JsPath \"date").write[String] and
    (JsPath \ "count").write[Int]
  )(unlift(Post.unapply))

  implicit val reads: Reads[Post] = (
    (JsPath \ "objectID").read[Long] and
    (JsPath \ "created_at").read[String] and
    (JsPath \ "num_comments").read[Int]
  )(Post.apply _)
}

import play.api.libs.json._
class PostRepo {
  val request: WSRequest = ws.url(MY_URL)

  def getPosts: Future[Seq[Post]] =
    val result: Future[JsValue] = request.get().map(response =>
        response.status match {
          case 200 => Json.parse(response.body)
          case _ => throw new Exception("Web service call failed: " + response.body)
    })
    result.map( {
        jsonvalue => println("JSARRAY: " + jsonvalue);
        (jsonvalue \ "hits").as[Seq[Post]]
    }) 
    result
}

现在,当我运行代码时,出现以下错误:

 play.api.http.HttpErrorHandlerExceptions$$anon$1: Execution exception[[JsResultException: 

JsResultException(错误:列表((((0)/日期,列表(ValidationError(列表(error.path.missing),WrappedArray())))))(((0)/计数,列表(ValidationError(列表(error.path。缺少),WrappedArray()))),((0)/ id,List(ValidationError(List(error.path.missing),WrappedArray())))),((1)/ date,List(ValidationError(List( error.path.missing),WrappedArray()))))(((1)/ count,List(ValidationError(List(error.path.missing),WrappedArray())))),(((1)/ id,List( ValidationError(List(error.path.missing),WrappedArray()))))(((2)/ date,List(ValidationError(List(error.path.missing),WrappedArray()))),(((2)/ count,List(ValidationError(List(error.path.missing),WrappedArray())))),((2)/ id,List(ValidationError(List(error.path.missing),WrappedArray()))),( (3)/ date,List(ValidationError(List(error.path.missing),WrappedArray()))),((3)/ count,List(ValidationError(List(error.path.missing),WrappedArray()) )),((3 / id,List(ValidationError(List(error.path.missing),WrappedArray()))))

显然,我尝试解析JSON的方式出了点问题,但是我现在已经花了几个小时试图找出问题所在,而且我感到非常满意。

使用Reads.seq一些重构代码

val r = (__ \ "hits").read[Seq[Post]](Reads.seq[Post])

def getPosts: Future[Seq[Post]] = {
  WS.url(MY_URL).get().map(response =>
    response.status match {
      case 200 => r.reads(response.json) match {
        case JsError(e) => throw new Exception("Json read fails. Response body:" + response.json.toString() + "\nRead error:" + e.toString())
        case JsSuccess(x, _) => x
      }
      case _ => throw new Exception("Web service call failed: " + response.body)
    })
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM