我需要创建一个测试html文件,这样我才能测试我创建的API,但我根本不是一个html编码器。
所以,我有以下内容:
POST /somepage.php HTTP/1.1
Host: example.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 19
name=ruturajv&sex=m
我已经尝试将该代码放在一个文件上,但是浏览器没有启动它。
只需编写一个简单的HTML文件,然后将其加载到浏览器中并自动触发上述POST方法,最简单方法是什么?
我感谢所有的帮助!
答案 0 :(得分:3)
使用名为name
和sex
的字段创建一个简单表单,使用http(s)://example.com/somepage.php
按钮创建目标Submit
。
填写ruturajv
和m
。
点击此按钮,将发送请求。
<form action = "http://example.com/somepage.php" method = "post">
<input type = "text" name = "name" value = "ruturajv">
<input type = "text" name = "sex" value = "m">
<p><input type = "submit"></p>
</form>
答案 1 :(得分:-1)