不少框架中都有判斷請求是否是ajax蔬充,以Yii為例,判斷是否是ajax請求只要這樣
Yii::app()->request->isAjaxRequest;
這個屬性即表示是否為ajax請求窟她,那么這個是如何判斷的呢全闷?
追溯源碼發(fā)現(xiàn)Yii::app()->request指向CHttpRequest類,但是這個類里面沒有
isAjaxRequest這個屬性潘鲫,這是為什么翁逞?搜索一下ajax關鍵字,發(fā)現(xiàn)有個方法:
/**
* Returns whether this is an AJAX (XMLHttpRequest) request.
* @return boolean whether this is an AJAX (XMLHttpRequest) request.
*/
public function getIsAjaxRequest()
{
return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH']==='XMLHttpRequest';
}
還有個注釋:
/**
* @property boolean $isAjaxRequest Whether this is an AJAX (XMLHttpRequest) request.
*/
莫非跟魔術方法魔術變量有關溉仑?
搜了一下 "PHP property"
果不其然
搜到了這個:鏈接
@property shows a "magic" property variable that is found inside the class.
datatype should be a valid PHP type or "mixed." phpDocumentor will display the optional description unmodified, and defaults to "mixed" if the datatype is not present.
>The property is presumed to be available for both read and write operations. If the property is read-only, you should use the @property-read tag instead. If the property is write-only, use @property-write.
也就是說用@property標記的變量是魔術變量熄攘。
簡單點說PHP在調用對象的某個屬性的時候,當這個屬性不存在的時候會去執(zhí)行_get方法彼念,同樣有其他的類似的方法(_set等)【下劃線實際是兩個】
跟蹤到Yii框架的CComponent類中挪圾,發(fā)現(xiàn)Yii將__get方法重寫
/**
* Returns a property value, an event handler list or a behavior based on its name.
* Do not call this method. This is a PHP magic method that we override
* to allow using the following syntax to read a property or obtain event handlers:
* <pre>
* $value=$component->propertyName;
* $handlers=$component->eventName;
* </pre>
* @param string $name the property name or event name
* @return mixed the property value, event handlers attached to the event, or the named behavior
* @throws CException if the property or event is not defined
* @see __set
*/
public function __get($name)
{
$getter='get'.$name;
if(method_exists($this,$getter))
return $this->$getter();
elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name))
{
// duplicating getEventHandlers() here for performance
$name=strtolower($name);
if(!isset($this->_e[$name]))
$this->_e[$name]=new CList;
return $this->_e[$name];
}
elseif(isset($this->_m[$name]))
return $this->_m[$name];
elseif(is_array($this->_m))
{
foreach($this->_m as $object)
{
if($object->getEnabled() && (property_exists($object,$name) || $object->canGetProperty($name)))
return $object->$name;
}
}
throw new CException(Yii::t('yii','Property "{class}.{property}" is not defined.',
array('{class}'=>get_class($this), '{property}'=>$name)));
}
也就是說,當調用Yii::app()->request->isAjaxRequest逐沙;時會嘗試去執(zhí)行
getIsAjaxRequest方法哲思,果然,在CHttpRequest類中是有這個方法的:
/**
* Returns whether this is an AJAX (XMLHttpRequest) request.
* @return boolean whether this is an AJAX (XMLHttpRequest) request.
*/
public function getIsAjaxRequest()
{
return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH']==='XMLHttpRequest';
}
到這里框架的流程走清楚了吩案,然后我們來看看它是如何判斷是否為ajax請求的棚赔。
只要
$_SERVER['HTTP_X_REQUESTED_WITH'] = 'XMLHttpRequest';
就說明是ajax請求,那么$_SERVER['HTTP_X_REQUESTED_WITH']是什么呢徘郭?
'XMLHttpRequest'又代表著什么靠益?
搜了一下$_SERVER,文檔中是這樣說的:
$_SERVER is an array containing information such as headers, paths, and script locations. The entries in this array are created by the web server. There is no guarantee that every web server will provide any of these; servers may omit some, or provide others not listed here. That said, a large number of these variables are accounted for in the ? CGI/1.1 specification, so you should be able to expect those.
就是說$_SERVER是包含一系列環(huán)境信息残揉,這些信息是由web server創(chuàng)建的胧后,不保證每個web server都會創(chuàng)建,才疏學淺抱环,我連web server指的是什么都不確定壳快,是瀏覽器纸巷?還是服務器(apache/nginx)?從字面看是后者眶痰。但是請求的源頭可是瀏覽器瘤旨。
搜了一下 XMLHttpRequest,有這樣的描述:
XMLHttpRequest對象可以在不向服務器提交整個頁面的情況下竖伯,實現(xiàn)局部更新網頁存哲。
當頁面全部加載完畢后,客戶端通過該對象向服務器請求數(shù)據七婴,服務器端接受數(shù)據并處理后宏胯,向客戶端反饋數(shù)據。
XMLHttpRequest 對象提供了對 HTTP 協(xié)議的完全的訪問本姥,包括做出 POST 和 HEAD 請求以及普通的 GET 請求的能力肩袍。
XMLHttpRequest 可以同步或異步返回 Web 服務器的響應,并且能以文本或者一個 DOM 文檔形式返回內容婚惫。
盡管名為 XMLHttpRequest氛赐,它并不限于和 XML 文檔一起使用:它可以接收任何形式的文本文檔。
XMLHttpRequest 對象是名為 AJAX 的 Web 應用程序架構的一項關鍵功能先舷。
暫時不管這些艰管,用chrome隨便跟蹤ajax一個請求:
發(fā)現(xiàn)在請求頭部里面有這樣的一項:
X-Requested-With:XMLHttpRequest
而非ajax請求里面是沒有的,看來是瀏覽器這端自己定義的了蒋川。
由于使用的是jQuery牲芋,所以在jQuery源碼中搜了一下,發(fā)現(xiàn)這一行:
if ( !options.crossDomain && !headers["X-Requested-With"] ) {
headers["X-Requested-With"] = "XMLHttpRequest";
}
這段代碼出現(xiàn)在jQuery.ajaxTransport(function( options ) )中
也就是說在jQuery中封裝的ajax請求都會加上這個頭部捺球。
那么XMLHttpRequest來源清楚了缸浦,它又是怎么到$_SERVER中去的呢?
經過搜索資料發(fā)現(xiàn)氮兵,請求信息會被服務器(nginx/apache等)寫入環(huán)境變量
以apache為例:
查看apache的配置文件發(fā)現(xiàn)它載入了這個模塊
LoadModule setenvif_module modules/mod_setenvif.so
而這個模塊正是根據客戶端請求頭字段設置環(huán)境變量裂逐。
簡單的看了下說明,于是把apache的配置文件加上了這句:
SetEnv HTTP_X_REQUESTED_WITH lk
將HTTP_X_REQUESTED_WITH 的值設置為"lk"
于是打印出$_SERVER變量是這樣的
好了泣栈,到這里卜高,表面上的流程已經走完,也就知道了是如何判斷ajax請求的南片。
大致歸納為
- 瀏覽器端將特定的請求頭設置為特定值掺涛,做為標識,每個瀏覽器端可能不同疼进,服務端接收到后將其寫入環(huán)境變量薪缆,PHP去讀取環(huán)境變量判斷是否是ajax請求。
至于實現(xiàn)的細節(jié)則需要閱讀相關源碼進一步地去了解颠悬,這里就不展開了矮燎。