jmeter无法接受参数?

发布于 2024-11-05 04:25:16 字数 286 浏览 2 评论 0原文

我有一个奇怪的问题。

上传图像时,我无法将请求参数发送到 LocalHost

选择 HTTP request Sampler 后,我添加请求参数,并为其添加文件和参数名称。如果我不输入图像的参数名称,它接受请求参数,如果我输入图像的参数名称,则它不接受请求参数。

可能是什么问题?

PS:我有HTTP cookie管理器,HTTP请求(用于登录并获取会话),然后是另一个HTTP请求,用于发送请求参数和带有参数名称的图像。最后查看结果树。

I have a weird problem.

I am not able to send request parameters to the LocalHost while uploading an image.

After selecting HTTP request sampler, I add request parameters, the add a file and parameter name for it. If I don't put parameter name for the image it accepts the request parameters, I put the parameter name for the image, then it doesn't accept the request parameters.

What could be the problem?

PS: I have HTTP cookie manager, HTTP request(for logging in and get the session), then another HTTP request for sending request parameters and image with the parameter name. At last View Results Tree.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

城歌 2024-11-12 04:25:16

格式化请求的最简单方法是记录操作,然后修改参数。这保证了几件事:

  1. 您拥有正确的方法(POST / GET /等)
  2. 所有参数名称都是正确的(错误的字符大小写可能会杀死您)
  3. 所有参数都被捕获。

此外,JMETER 在 HTTP 请求的底部有一个用于附加附加文件的字段。您需要在此处指定完整的文件路径和文件类型。这很可能反映您在参数中输入的内容。

The easiest way to format your request is to RECORD the action, and then modify the parameters. This guarantees several things:

  1. You have the correct method (POST / GET / etc)
  2. All parameter names are correct (the wrong character case can kill you)
  3. All parameters are captured.

Additionally, JMETER has as field at the bottom of the HTTP request for attaching additional files. It is here that you need to specify the full file path and file type. This will most likely mirror what you've put into the parameters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文