主頁 > 知識庫 > AJAX使用get與post模式的區(qū)別分析

AJAX使用get與post模式的區(qū)別分析

熱門標(biāo)簽:老虎郵局地圖標(biāo)注點 襄陽外呼系統(tǒng)接口 上海浦東百度地圖標(biāo)注中心注冊 百靈鳥 科智聯(lián)智能電銷機(jī)器人 青海醫(yī)療智能外呼系統(tǒng)怎么樣 外呼系統(tǒng)獲取客戶手機(jī)號 徐州電銷卡外呼系統(tǒng)供應(yīng)商 目標(biāo)三維地圖標(biāo)注

本文實例分析了AJAX使用get與post模式的區(qū)別。分享給大家供大家參考。具體分析如下:

如果是get 模式的請求,則將傳遞參數(shù)通過URL 地址發(fā)送到服務(wù)器端;

如果是post 模式的請求,則將傳遞參數(shù)通過send( ) 方法發(fā)送到服務(wù)器端(并且必須設(shè)置請求文件頭);

post 模式的代碼如下:

script type="text/javascript">
!--
var queryString = "firstName=xugangbirthday=1227";
var url = "9-3.aspx?timetamp=" + new Date().getTime();
xmlHttp.open("POST",url);
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
xmlHttp.send(queryString); //該語句負(fù)責(zé)發(fā)送數(shù)據(jù)
//-->
/script>

一個演示get 模式與post 模式區(qū)別的示例:

客戶端:

代碼示例:

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html>
head>
title>GET VS. POST/title>
script language="javascript">
var xmlHttp;
function createXMLHttpRequest(){
  if(window.ActiveXObject)
    xmlHttp = new ActiveXObject("Microsoft.XMLHttp");
  else if(window.XMLHttpRequest)
    xmlHttp = new XMLHttpRequest();
}
function createQueryString(){
  var firstName = document.getElementById("firstName").value;
  var birthday = document.getElementById("birthday").value;  
  var queryString = "firstName=" + firstName + "birthday=" + birthday;
  return encodeURI(encodeURI(queryString));  //兩次編碼解決中文亂碼問題
}
// GET 模式
function doRequestUsingGET(){
  createXMLHttpRequest();
  var queryString = "9-3.aspx?";
  queryString += createQueryString() + "timestamp=" + new Date().getTime();
  xmlHttp.onreadystatechange = handleStateChange;
  xmlHttp.open("GET",queryString);
  xmlHttp.send(null);
}
// POST 模式
function doRequestUsingPOST(){
  createXMLHttpRequest();
  var url = "9-3.aspx?timestamp=" + new Date().getTime();
  var queryString = createQueryString();
  xmlHttp.open("POST",url);
  xmlHttp.onreadystatechange = handleStateChange;
  xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
  xmlHttp.send(queryString);
}
function handleStateChange(){
  if(xmlHttp.readyState == 4  xmlHttp.status == 200){
    var responseDiv = document.getElementById("serverResponse");
    responseDiv.innerHTML = decodeURI(xmlHttp.responseText);//解碼
  }
}
/script>
/head>
body>
h2>輸入姓名和生日/h2>
form>
  input type="text" id="firstName" />br>
  input type="text" id="birthday" />
/form>
form>
  input type="button" value="GET" onclick="doRequestUsingGET();" />br>
  input type="button" value="POST" onclick="doRequestUsingPOST();" />
/form>
div id="serverResponse">/div>
/body>
/html>

服務(wù)器端

代碼示例:

復(fù)制代碼 代碼如下:
%@ Page Language="C#" ContentType="text/html" ResponseEncoding="gb2312" %>
%@ Import Namespace="System.Data" %>
%
    if(Request.HttpMethod == "POST")
        Response.Write("POST: " + Request["firstName"] + ", your birthday is " + Request["birthday"]);
    else if(Request.HttpMethod == "GET")
        Response.Write("GET: " + Request["firstName"] + ", your birthday is " + Request["birthday"]);
%>

通常在數(shù)據(jù)不多,并且不敏感的時候,使用get 模式的請求;

而數(shù)據(jù)量大,或者數(shù)據(jù)敏感的時候,使用post 模式的請求。

希望本文所述對大家的Ajax程序設(shè)計有所幫助。

您可能感興趣的文章:
  • HTTP中g(shù)et和post的區(qū)別詳解
  • 簡單談?wù)凣ET和POST有什么區(qū)別
  • Jquery AJAX POST與GET之間的區(qū)別
  • ajax請求get與post的區(qū)別總結(jié)
  • Get方法和Post方法的區(qū)別深入理解
  • 分享下GET和POST的真正區(qū)別
  • ajax中g(shù)et和post的說明及使用與區(qū)別
  • 網(wǎng)絡(luò)編程之get與post的區(qū)別與聯(lián)系
  • HTTP請求 GET與POST方法的區(qū)別
  • POST與GET方法的區(qū)別簡要分析
  • GET和post取值限制區(qū)別分析
  • 都2019年了,還問http中GET和POST的區(qū)別

標(biāo)簽:揭陽 股票 荊州 佛山 咸寧 紅河 商洛 辛集

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《AJAX使用get與post模式的區(qū)別分析》,本文關(guān)鍵詞  AJAX,使用,get,與,post,模式,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《AJAX使用get與post模式的區(qū)別分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于AJAX使用get與post模式的區(qū)別分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章