2016-04-17 60 views
0

我需要創建一個測試html文件,這樣我才能夠測試我創建的API,但我根本不是html編碼器。如何從HTML文件中啓動HTTP POST?

所以,我有以下幾點:

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

檢查ajax請求GET&POST –

回答

3

namesex以及帶Submit按鈕的目標http(s)://example.com/somepage.php創建一個簡單表格。

填寫ruturajvm

點擊此按鈕,將發送請求。

<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> 
+0

將'method =「POST」'添加到窗體作爲屬性。如果未指定方法,則默認爲GET請求。 –

+0

@just_a_coder,謝謝,補充了這一點 – ForceBru

-1

最簡單的:使用

<form>

form tag on MDN:例子應該適合你的帳單。

如果你拿一些更復雜的東西,查找XMLHTTPRequest