日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ajax 跨域问题

發布時間:2025/3/15 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ajax 跨域问题 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

mvc 項目中需要在服務端webconfig 文件中添加

<system.webServer><!-- 這是防止跨域問題增加的代碼 開始--><httpProtocol><customHeaders><add name="Access-Control-Allow-Origin" value="*" /><add name="Access-Control-Allow-Headers" value="Content-Type" /><add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS" /></customHeaders></httpProtocol><!-- 這是防止跨域問題增加的代碼 結束--><modules><remove name="FormsAuthentication" /></modules></system.webServer>

  如果是web api 項目(JsonP方式請求數據)

以我們需要對WebAPI做拓展,讓它支持這樣的callback

解決方案如下:

只需要給全局注冊一個JsonCallbackAttribute,就可以判斷接口的訪問是屬于跨域,還是非跨域,正常的返回。

因為我們的接口,可能是用來給 移動端(Android?、IOS)做數據接口,也有可能是給網站用,所以,考慮到可能存在跨域的問題。

<strong> GlobalConfiguration.Configuration.Filters.Add(new JsonCallbackAttribute());</strong> public class JsonCallbackAttribute : ActionFilterAttribute{private const string CallbackQueryParameter = 'callback';public override void OnActionExecuted(HttpActionExecutedContext context){var callback = string.Empty;if (IsJsonp(out callback)){var jsonBuilder = new StringBuilder(callback);jsonBuilder.AppendFormat('({0})', context.Response.Content.ReadAsStringAsync().Result);context.Response.Content = new StringContent(jsonBuilder.ToString());//context.Response.Content = new StringContent('C('a')');}base.OnActionExecuted(context);}private bool IsJsonp(out string callback){callback = System.Web.HttpContext.Current.Request.QueryString[CallbackQueryParameter];return !string.IsNullOrEmpty(callback);}

  

轉載于:https://www.cnblogs.com/sdaulldd/p/4401536.html

總結

以上是生活随笔為你收集整理的ajax 跨域问题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。