Ajax中請求方式(GET/POST)之POST方式

來源:互聯網
上載者:User

 

本人最近工作不太忙抽點時間簡單學一下Ajax,特此借鑒前輩經驗。

 

文章來源:http://www.cnblogs.com/oneword/archive/2011/06/04/2072593.html

寫在前面的話:

XMLHttpRequest對象的open方法的第一個參數為request-type,取值可以為get或post.本篇介紹post請求.

使用post方式時,瀏覽器會把各表單中欄位元素及其資料作為Http訊息的實體內容發送給Web伺服器.

使用post方式時,要注意設定Content-Type的內容為application/x-www-form-urlencoded,設定此內容是為了確保伺服器知道實體中有參數變數.

使用post方式時,參數是隨著send方法發送出去的,如send(data).

使用post方式時,伺服器端擷取參數時,需要使用Request.Form[data].

例子

用戶端HTML代碼不變,js代碼如下:

function btn_click() {    //擷取參數    var username = document.getElementById("txt_username").value;    var age = document.getElementById("txt_age").value;    //設定字串參數,並進行編碼    var args = "username=" + encodeURIComponent(username) + "&age=" + encodeURIComponent(age);    //建立XMLHttpRequest對象    var xmlHttp = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");    //配置串連及方式    //使用post方式不用擔心緩衝問題    xmlHttp.open("post", "post.aspx", true);    //設定Content-Type類型為aapplication/x-www-form-urlencoded,以告知伺服器實體中有參數    xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");    //設定回呼函數    xmlHttp.onreadystatechange = function () {        if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {            document.getElementById("result").innerHTML = xmlHttp.responseText;        }    }    //發送參數    xmlHttp.send(args);} 

伺服器端代碼:

protected void Page_Load(object sender, EventArgs e){    Response.Clear();    //使用Request.Form來擷取資料    string username = Request.Form["username"];    int age = int.Parse(Request.Form["age"]);    Response.Write("姓名:'" + username + "'<br/>年齡:" + age + "<br/>時間:'" + DateTime.Now.ToString() + "'");    Response.End();}

現在,我們仍然輸入張三,30這兩條資料,然後工具 + 生產力檢查下,看到底發送了什麼.

OverView:

發送的HTTP Header:

擷取的HTTP Header

緩衝:(此處可以看出,post請求是不會被換緩衝的)

Post的內容:(在get請求時,資料是通過url發送的)

小結:

本片介紹了post是如何使用的.隨後的文章,我們會對get請求與post請求做個比較,究竟什麼時候適合get請求,什麼時候適合post請求呢.

 

本人最近工作不太忙抽點時間簡單學一下Ajax,特此借鑒前輩經驗。

 

文章來源:http://www.cnblogs.com/oneword/archive/2011/06/04/2072593.html

寫在前面的話:

XMLHttpRequest對象的open方法的第一個參數為request-type,取值可以為get或post.本篇介紹post請求.

使用post方式時,瀏覽器會把各表單中欄位元素及其資料作為Http訊息的實體內容發送給Web伺服器.

使用post方式時,要注意設定Content-Type的內容為application/x-www-form-urlencoded,設定此內容是為了確保伺服器知道實體中有參數變數.

使用post方式時,參數是隨著send方法發送出去的,如send(data).

使用post方式時,伺服器端擷取參數時,需要使用Request.Form[data].

例子

用戶端HTML代碼不變,js代碼如下:

function btn_click() {    //擷取參數    var username = document.getElementById("txt_username").value;    var age = document.getElementById("txt_age").value;    //設定字串參數,並進行編碼    var args = "username=" + encodeURIComponent(username) + "&age=" + encodeURIComponent(age);    //建立XMLHttpRequest對象    var xmlHttp = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");    //配置串連及方式    //使用post方式不用擔心緩衝問題    xmlHttp.open("post", "post.aspx", true);    //設定Content-Type類型為aapplication/x-www-form-urlencoded,以告知伺服器實體中有參數    xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");    //設定回呼函數    xmlHttp.onreadystatechange = function () {        if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {            document.getElementById("result").innerHTML = xmlHttp.responseText;        }    }    //發送參數    xmlHttp.send(args);} 

伺服器端代碼:

protected void Page_Load(object sender, EventArgs e){    Response.Clear();    //使用Request.Form來擷取資料    string username = Request.Form["username"];    int age = int.Parse(Request.Form["age"]);    Response.Write("姓名:'" + username + "'<br/>年齡:" + age + "<br/>時間:'" + DateTime.Now.ToString() + "'");    Response.End();}

現在,我們仍然輸入張三,30這兩條資料,然後工具 + 生產力檢查下,看到底發送了什麼.

OverView:

發送的HTTP Header:

擷取的HTTP Header

緩衝:(此處可以看出,post請求是不會被換緩衝的)

Post的內容:(在get請求時,資料是通過url發送的)

小結:

本片介紹了post是如何使用的.隨後的文章,我們會對get請求與post請求做個比較,究竟什麼時候適合get請求,什麼時候適合post請求呢.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.