我试图在我的ASP.NET Core Web API上启用跨源资源共享,但是我遇到了麻烦。
该EnableCors
属性接受policyName
类型string
作为参数:
// Summary:
// Creates a new instance of the Microsoft.AspNetCore.Cors.Core.EnableCorsAttribute.
//
// Parameters:
// policyName:
// The name of the policy to be applied.
public EnableCorsAttribute(string policyName);
这是什么policyName
意思?如何在ASP.NET Core Web API上配置CORS?