在 JSON 响应中引用正则表达式字符串
Reference regex string In JSON response
如何在 JSON 响应中引用正则表达式字符串
url value(consumer(regex('/connectors/(.*?)/status')))
所以如果我请求 '/connectors/foo/status'
我会得到 { "name": "foo" }
你需要做
response {
body(name: fromRequest().path(1))
}
如何在 JSON 响应中引用正则表达式字符串
url value(consumer(regex('/connectors/(.*?)/status')))
所以如果我请求 '/connectors/foo/status'
我会得到 { "name": "foo" }
你需要做
response {
body(name: fromRequest().path(1))
}