我正在开发一个单页脚本,即 category.php 用于类别管理。
- 这个脚本有一个输入按钮来调用 AJAX 调用。
<input type="button" id="btn" />
Jquery代码绑定点击事件并调用ajax。我想要json响应。
$(document).ready(function(e) { $('#btn').click(function(e) { id=1; jQuery.ajax({ type: 'post', url: 'category.php', success: function(data) { if(data.rstatus==1){ alert(data.text); }else alert(data); }, data:{'id':id} }); }); });
一个用于处理 AJAX 调用的 php 代码。
if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { $jsonResponse=array('rstatus'=>1,'id'=>$_POST['id']); header("Content-type: application/json"); json_encode($jsonResponse); die(); }
问题:
此 ajax 调用无法在回调函数中产生正确的响应,并导致 firebug 控制台出错。类型错误:数据为空
在 FIREBUG 中的标头如下:
Response Headers
> Cache-Control no-cache, must-revalidate Connection Keep-Alive
> Content-Length 0 Content-Type application/json Date Tue, 26 Mar 2013
> 12:45:52 GMT Expires Mon, 26 Jul 1997 05:00:00 GMT
> Keep-Alive timeout=5, max=98 Last-Modified Tue, 26 Mar 2013
> 12:45:52GMT Pragma no-cache Server Apache/2.4.3 (Win32) OpenSSL/1.0.1c
> PHP/5.4.7 X-Powered-By PHP/5.4.7
Request Headers
> > Accept */* Accept-Encoding gzip, deflate
> > Accept-Language en-US,en;q=0.5 Content-Length 4
> > Content-Type application/x-www-form-urlencoded; charset=UTF-8
> > Cookie __gads=ID=39701a3d85dce702:T=1350383638:S=ALNI_MY_rHGVQ-qNxH4UGmbY_G-IuVcDkA;
> > __utma=141011373.593047819.1350426838.1364292528.1364295112.314;PHPSESSID=1s73cho6ildjt80jtudt8nq0f5 Host abc.com Referer http://www.abc.com/category.php
> > User-Agent Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101
> > Firefox/19.0 X-Requested-With XMLHttpRequest