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