ASP.NET Core는 중간 부품을 사용하여 도메인 간 요청을 지원합니다.

1768 단어
방법 1:
Startup의 Configure Services()에 서비스를 추가합니다.AddCors()가 Startup의 Configure()에 app를 추가합니다.UseCors(); 앱에 있습니다.UseMvc();이전
app.UseCors(builder => builder
    .AllowAnyOrigin()
    .AllowAnyMethod()
    .AllowAnyHeader()
    .AllowCredentials());   
app.UseMvc();

텍스트 링크
https://stackoverflow.com/questions/44379560/how-to-enable-cors-in-asp-net-core-webapi
 
방법2:
1、public void Configure(IAPplication Builder app, IHosting Environment env) 방법에서
덧붙이지 마:app.UseCors();
2. 위 방법 더하기:
app.UseMiddleware();

3. 중간 코드는 다음과 같다.
public class CorsMiddleware
{
    private readonly RequestDelegate next;

    public CorsMiddleware(RequestDelegate next)
    {
        this.next = next;
    }
    public async Task Invoke(HttpContext context)
    {
        if (context.Request.Headers.ContainsKey(CorsConstants.Origin))
        {
            context.Response.Headers.Add("Access-Control-Allow-Origin", context.Request.Headers["Origin"]);
            context.Response.Headers.Add("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS,HEAD,PATCH");
            context.Response.Headers.Add("Access-Control-Allow-Headers", context.Request.Headers["Access-Control-Request-Headers"]);
            context.Response.Headers.Add("Access-Control-Allow-Credentials", "true");

            if (context.Request.Method.Equals("OPTIONS"))
            {
                context.Response.StatusCode = StatusCodes.Status200OK;
                return;
            }
        }

        await next(context);
    }
}

전재 대상:https://www.cnblogs.com/wmlunge/p/10655209.html

좋은 웹페이지 즐겨찾기