gpt4 book ai didi

json - 从 SOAPUI 中的 json 请求中获取值

转载 作者:行者123 更新时间:2023-12-03 16:52:59 25 4
gpt4 key购买 nike

我试图获得 TxnType 的值(value)来自 json 请求,同时模拟来自 SOAPUI 的响应。我想根据 TxnType 的值以不同的响应进行响应.

{
"Request": {
"UserId": "user",
"TxnType": "fetch"
}
}

最佳答案

这是使用 获取请求值的 groovy 脚本固定 json

def json = """{
"Request": {
"UserId": "user",
"TxnType": "fetch"
}
}"""

def transactionType = new groovy.json.JsonSlurper().parseText(json).Request.TxnType
log.info "TxnType is : ${transactionType}"

您可以快速尝试 Demo

如果你想在mock脚本中使用动态json,那么你可以使用下面的 模拟脚本调度器
def transactionType = new groovy.json.JsonSlurper().parseText(mockRequest.requestContent).Request.TxnType
log.info "TxnType is : ${transactionType}"

关于json - 从 SOAPUI 中的 json 请求中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42284533/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com