制作网站时如何轻松测试POST?

发布于 2024-11-06 09:18:39 字数 138 浏览 0 评论 0原文

制作网站时测试发送 POST 请求的简单方法是什么?我可以通过在 URL (example.com/?foo=bar&bar=baz) 中输入 GET 请求来轻松发送 GET 请求,但是发送 POST 请求的同等简单方法是什么?

What's an easy way to test sending POST requests when making a website? I can easily send GET requests by typing it in the URL (example.com/?foo=bar&bar=baz) but what's an equivalently easy way to send POST requests?

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

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

发布评论

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

评论(5

一绘本一梦想 2024-11-13 09:18:39

Curl CLI

curl -d "param1=value¶m2=value2" http://www.example.com/resource

curl -F "[email protected]" http://www.example.com/resource

https://superuser.com /questions/149329/how-do-i-make-a-post-request-with-curl/149335#149335

但我总是只使用带有 http 请求类的测试脚本。我发现您可以在标题、格式、动词等方面获得更精细的粒度。当然,您可以在完成后将该代码放入单元测试中。我使用我编写的这个类( https:// github.com/homer6/altumo/blob/master/source/php/Http/OutgoingHttpRequest.md )但我听说 zend request 类也非常好。

Curl CLI

curl -d "param1=value¶m2=value2" http://www.example.com/resource

or

curl -F "[email protected]" http://www.example.com/resource

https://superuser.com/questions/149329/how-do-i-make-a-post-request-with-curl/149335#149335

But I always just use a test script with a http request class. I find you get finer granularity over headers, formats, verb, etc. And of course you can put that code into a unit test after you're done. I use this class that I wrote ( https://github.com/homer6/altumo/blob/master/source/php/Http/OutgoingHttpRequest.md ) but I hear that the zend request class is quite good too.

梦屿孤独相伴 2024-11-13 09:18:39

您可以使用 Fiddler 或浏览器插件,例如 FireFox 篡改数据

或者您可以创建一个表单并从任何 .HTML 页面提交:

<form action="TestPage.html" method="POST">
    <input name="name1" value="value1" />
    <input name="name2" value="value2" />
    <input type="submit" value="POST!" />
</form>

You can use Fiddler or a Browser plugin like FireFox Tamper Data.

Or you can just create a form and submit it from any .HTML page:

<form action="TestPage.html" method="POST">
    <input name="name1" value="value1" />
    <input name="name2" value="value2" />
    <input type="submit" value="POST!" />
</form>
听,心雨的声音 2024-11-13 09:18:39

您可以使用任何检查器来执行此操作,例如 fireFox

make request type post >>输入您的网址>>将参数放入请求正文部分

在此处输入图像描述

you can use any inspector to do that like fireFox

make request type post >> put your url >> put parameters in request body section

enter image description here

熟人话多 2024-11-13 09:18:39

尝试一些http请求发送工具,例如Wfetch

try some http request sending tools like Wfetch

段念尘 2024-11-13 09:18:39

邮差在 Google Chrome 中,是一个测试 POST 方法的好工具。

Postman in Google Chrome, is a great tool to test POST methods.

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