使用groovy通过Json响应的子子值获取父元素的ID

时间:2019-03-21 03:25:22

标签: json groovy soapui jsonslurper

我有以下groovy脚本从响应中获取值。

import com.eviware.soapui.support.XmlHolder
import groovy.json.JsonSlurper 

def response = context.expand( '${GetLoansList#Response}' ).toString()
log.info(response)

def slurper = new JsonSlurper()
def json = slurper.parseText response

log.info(json.items.id)

我的json响应与此类似

{
"items" : [
  {
     "id" : 48223,
     "name" : "LAI-00151007",
     "amount" : 25050.0,
     "interest_rate" : 25.99,
     "term" : 60,
  },
  {
     "id" : 48262,
     "name" : "LAI-00152581",
     "amount" : 44225.0,
     "interest_rate" : 18.9,
     "term" : 36,
  },
 ],
 "total_count" : 13
 }

我想获得给定名称的相应“ id”(“名称”:“ LAI-00152581”)。做这个的最好方式是什么?谢谢

1 个答案:

答案 0 :(得分:1)

您可以使用:

json.items.find({ it.name == "LAI-00152581" })?.id

?.是为了确保没有items符合标准的情况。在这种情况下,结果将为null

自Groovy 2.5.0起,还有另一种方法可以做到这一点,这在语义上是等效的:

json.items.findResult { if (it.name == "LAI-00152581") return it.id }