json 散列的响应解析主体动态值,在键中有点
Response Parsed Body Dynamic Value for json hash which has dots in keys
当使用 Paw 为后续请求解析 JSON 响应主体时,我 运行 进入此响应:
{
"named_items": {
"key.with.periods": "stuff stuff stuff",
"key.with.more.periods": "stuff thing stuff"
}
}
在 javascript 中,使用对象上的 []
符号可以直接访问:response.named_items['key.with.periods']
,但是我无法通过右键单击让 Paw 正确捕获值 "Copy as response body dynamic variable",或者我能想到的任何方式手动构建。
有没有办法绕过这个限制?
当然可以,您可以使用反斜杠转义点。在您的情况下,这应该有效:
key\.with\.periods
我们将尝试在下一个版本中使这一点更加明显。谢谢!
当使用 Paw 为后续请求解析 JSON 响应主体时,我 运行 进入此响应:
{
"named_items": {
"key.with.periods": "stuff stuff stuff",
"key.with.more.periods": "stuff thing stuff"
}
}
在 javascript 中,使用对象上的 []
符号可以直接访问:response.named_items['key.with.periods']
,但是我无法通过右键单击让 Paw 正确捕获值 "Copy as response body dynamic variable",或者我能想到的任何方式手动构建。
有没有办法绕过这个限制?
当然可以,您可以使用反斜杠转义点。在您的情况下,这应该有效:
key\.with\.periods
我们将尝试在下一个版本中使这一点更加明显。谢谢!