文章出處
文章列表
前言
做B/S項目的時候,我們一般使用jquery+ashx來實現異步的一些操作,比如后臺獲取一些數據到前臺,但是如果ashx文件不在本項目下,引用的是別的域下的文件,這時候就訪問不了。關于jsonp其實是老生常談的話題,園中也有不少文章介紹,可以把jsonp看成一個協議或模式,這邊就不多說,我們只看示例。
正常實現
我們先看下代碼:
1 public void ProcessRequest(HttpContext context) 2 { 3 string type = context.Request.QueryString["type"].ToString(); 4 string result = ""; 5 switch (type) 6 { 7 case "1": 8 result = "one"; 9 break; 10 case "2": 11 result = "two"; 12 break; 13 case "3": 14 result = "three"; 15 break; 16 default: 17 result = "other"; 18 break; 19 } 20 context.Response.ContentType = "text/plain"; 21 context.Response.Write(result); 22 }
前臺js代碼:
<script type="text/javascript"> function getString() { $.ajax({ type: "POST", url: "GetStringDemo.ashx?type=" + $("#txtValue").val(), timeout: 20000, beforeSend: function (XMLHttpRequest) { $("#div_clear").html("正在獲取,請稍候..."); }, success: function (data, textStatus) { $("#div_clear").html("獲取值:" + data); }, error: function (XMLHttpRequest, textStatus, errorThrown) { $("#div_clear").html("獲取出錯!"); } }); } </script>
上面的代碼不需要解釋太多,就是前臺通過ajax傳過去參數,ashx進行處理并返回處理結果,前臺呈現,這是我們一般正常通過ashx做的異步操作,注意現在是前后臺在同一個項目下。
運行結果:
jsonp跨域
上面的示例ajax代碼中url如果改成別的域名下的ashx文件,就會出現訪問錯誤,通過jsonp可以解決跨域問題,上面的代碼我們修改下:
ashx代碼:
1 public void ProcessRequest(HttpContext context) 2 { 3 string type = context.Request.QueryString["type"].ToString(); 4 string callback = HttpContext.Current.Request["jsoncallback"]; 5 string result = ""; 6 switch (type) 7 { 8 case "1": 9 result = "one"; 10 break; 11 case "2": 12 result = "two"; 13 break; 14 case "3": 15 result = "three"; 16 break; 17 default: 18 result = "other"; 19 break; 20 } 21 context.Response.ContentType = "application/json"; 22 context.Response.ContentEncoding = System.Text.Encoding.UTF8; 23 context.Response.Write(callback + "({\"result\":\"" + result + "\"})"); 24 context.Response.End(); 25 }
前臺js代碼:
1 <script type="text/javascript"> 2 function getString() { 3 $.ajax({ 4 url: "http://localhost:8975/GetStringDemo.ashx?jsoncallback=?", 5 dataType: "jsonp", 6 data: { "type": $("#txtValue").val() }, 7 beforeSend: function (XMLHttpRequest) { 8 $("#div_clear").html("正在獲取,請稍候..."); 9 }, 10 success: function (data, textStatus) { 11 $("#div_clear").html("獲取值:" + data.result); 12 }, 13 error: function (XMLHttpRequest, textStatus, errorThrown) { 14 $("#div_clear").html("獲取出錯!"); 15 } 16 }); 17 } 18 </script>
注意上面的url,ashx和前臺頁面并不是在一個項目下。
運行結果:
示例代碼下載:jsonp跨域+ashx.rar
文章列表
全站熱搜