步骤
在Program.cs
书写以下代码, 注意: 写在app.UseAuthorization()之前:
app.UseCors(build =>
{
build.SetIsOriginAllowed(_ => true)
.AllowCredentials()
.AllowAnyHeader();
});
然后就可以跨域调用Api了。
在Program.cs
书写以下代码, 注意: 写在app.UseAuthorization()之前:
app.UseCors(build =>
{
build.SetIsOriginAllowed(_ => true)
.AllowCredentials()
.AllowAnyHeader();
});
然后就可以跨域调用Api了。