Asp.Net WebApi 啓用CORS跨域訪問指定多個域名

1.後臺action指定html

EnableCors指定可訪問的域名多個,使用逗號隔開跨域

        //支持客戶端憑據提交,指定多個域名,使用逗號隔開
        [EnableCors("http://localhost:51421,http://localhost:51422 ", "*", "*", SupportsCredentials = true)]
        //支持客戶端憑據提交
        //[EnableCors("http://localhost:51421", "*", "*", SupportsCredentials = true)]
        //[EnableCors("http://localhost:51421", "*", "*")]
        // [EnableCors("*", "*", "*")]
        public string GetOne()
        {
            //Microsoft.Owin.Cors.CorsOptions
            return CookieHelper.GetString("username");
        }

 

更多:cookie

Asp.Net WebApi+Microsoft.AspNet.WebApi.Core 啓用CORS跨域訪問post

Cors 跨域Access-Control-Allow-Originurl

Ajax跨域請求中的Cookie問題(默認不帶cookie等憑證)spa

相關文章
相關標籤/搜索