ApiSaveRegistration生成一个id传递给下一个查询,但id总是唯一的,我如何使id传递给下一个查询?
1. ApiSaveRegistration
2. highlighted the area where the id from ApiSaveRegistration should be inserted
我可以用变量来计算。你能帮帮我吗?
ApiSaveRegistration生成一个id传递给下一个查询,但id总是唯一的,我如何使id传递给下一个查询?
1. ApiSaveRegistration
2. highlighted the area where the id from ApiSaveRegistration should be inserted
我可以用变量来计算。你能帮帮我吗?
2条答案
按热度按时间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
idfiyjo82#
您可以将JSON提取器添加为返回此RegistrationId的请求的子项,并将其配置为:
则您将能够在需要时将提取的值引用为
${id}
JMeter Variable。更多信息: