1

我正在使用 Lift JSON 的 for-comprehensions 来解析一些 JSON。JSON 是递归的,因此例如该字段id存在于每个级别。这是一个例子:

val json = """
{
  "id": 1
  "children": [
    {
      "id": 2
    },
    {
      "id": 3
    }
  ]
}
"""

以下代码

var ids = for {
  JObject(parent) <- parse(json)
  JField("id", JInt(id)) <- parent
} yield id

println(ids)

产生List(1, 2, 3). 我期待它的产品List(1)

在我的程序中,这会导致二次计算,尽管我只需要线性。

是否可以使用 for-comprehensions 仅匹配顶级id字段?

4

1 回答 1

1

我还没有深入研究为什么默认理解是递归的,但是你可以通过简单地限定你的搜索根来解决这个问题:

scala>  for ( JField( "id", JInt( id ) ) <- parent.children ) yield id
res4: List[BigInt] = List(1)

注意使用parent.children

于 2012-03-04T16:47:09.253 回答