当我尝试从 React 应用程序访问 asp.net 核心应用程序控制器视图之一时,在浏览器控制台中,我收到了错误
'Refused to display 'http://localhost:1212/Account/Login/?ReturnUrl=%Home%MyIFrame%3url%TestData' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
'
因为我装饰了动作方法 [Authorize] attribute
startup.cs
包含在文件中
Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory){
app.UseCors(
options => options
.WithOrigins(
"http://localhost:3000",
)
.AllowAnyMethod()
.AllowAnyHeader()
);
}