JMeter.如何将一个惟一的id从一个查询传输到另一个查询?

mctunoxg  于 2022-12-18  发布在  其他
关注(0)|答案(2)|浏览(82)

ApiSaveRegistration生成一个id传递给下一个查询,但id总是唯一的,我如何使id传递给下一个查询?
1. ApiSaveRegistration
2. highlighted the area where the id from ApiSaveRegistration should be inserted
我可以用变量来计算。你能帮帮我吗?

ssm49v7z

ssm49v7z1#

您必须使用后处理器(JSON提取器/正则表达式提取器)将注册ID提取到一个变量中。将其添加到生成注册ID的请求中,并在需要时将其传递给后续请求。
https://jmeter.apache.org/usermanual/component_reference.html#JSON_Extractor
https://jmeter.apache.org/usermanual/component_reference.html#Regular_Expression_Extractor

idfiyjo8

idfiyjo82#

您可以将JSON提取器添加为返回此RegistrationId的请求的子项,并将其配置为:

则您将能够在需要时将提取的值引用为${id}JMeter Variable
更多信息:

相关问题