public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
app.UseCors(builder => builder.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader().AllowCredentials());
app.UseMvc();
}
相关文章
- ASP.NET MVC中设置跨域
- 【转载】ASP.NET MVC设置允许跨域访问
- ASP.NET MVC & WebApi 中实现Cors来让Ajax可以跨域访问 (转载)
- ASP.Net Core MVC+Ajax 跨域
- 【转载】ASP.NET MVC设置允许跨域访问
- 让ASP.NET MVC不使用jsonp也可以跨域访问
- .net core mvc全局设置跨域访问
- Asp.Net WebApi+Microsoft.AspNet.WebApi.Core 启用CORS跨域访问
- ASP.NET MVC WebApi 中实现Cors来让Ajax可以跨域访问 (转载)
- 在ASP.NET MVC Core中跨页面更改保持JavaScript设置