我的 JSON 响应如下所示
{
"pCategories": [
"pogc1",
"pogc16",
"pogc2",
"testc1122",
"testcat10012018",
"testcat10012019",
"testcat100120191",
"testcat11012018",
"testcat12012018",
"testcat120120181",
"testcat20112017",
"testcat20112018"
]
}
我已经使用下面的代码来断言。
def slurped = new JsonSlurper().parseText(response.asString())
assert slurped.pCategories.contains("$category")
但是得到一个错误。
我该如何解决?