【发布时间】:2019-10-15 15:19:16
【问题描述】:
我在使用 readJSON 访问嵌套 JSON 时遇到问题
oldJson 字符串:
{"branch":{"type-0.2":{"version":"0.2","rc":"1","rel":"1","extras":"1"}}}
我尝试像示例一样访问它 https://jenkins.io/doc/pipeline/steps/pipeline-utility-steps/#readjson-read-json-from-files-in-the-workspace
assert oldJson["rc"] == '1'
但它失败了。我认为这是因为“rc”嵌套在“type-02”中。我怎样才能访问它?
【问题讨论】:
标签: jenkins groovy jenkins-pipeline jenkins-plugins jenkins-groovy