有这样一个JSON:https://restcountries.com/v3.1/all我只想选择“翻译”-〉“ita”-〉“common”
HTTPBuilder getHttpBuilder() {
new HTTPBuilder('https://restcountries.com/')
}
def http = httpBuilder.request(Method.GET, ContentType.JSON){
uri.path = 'v3.1/all'
uri.query = [fields: 'translations,ita,common']
response.success = { resp, json ->
log.error(json.toString()) //string
log.error(JsonOutput.toJson(json).br) //json
log.error(JsonOutput.prettyPrint(JsonOutput.toJson(json))) //formated json
}
}
但我总是得到一个大致的看法或什么都不需要帮助我理解!谢谢!
1条答案
按热度按时间jyztefdp1#
帮我找到了这个解决方案。也许其他人也会偶然发现它。
needResult -我所需要的。也许有人会有一个更漂亮或正确的解决方案-我会很感激。但到目前为止这个结果是令人满意的。