Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您尝试使用 CORS 注册新用户时,_userManager.CreateASync(model) 会引发 CORS 问题,即使您已正确启用 CORS。有没有办法在 ASP.NET Core/MVC 6 中使用 CORS 注册新用户
调用另一个启用 cors 的 web api post 方法,然后调用实际的 register 方法。这样可行。
在 system.webserver 标签内的 web config 中添加以下行
<httpProtocol> <customHeaders> <clear /> <add name="Access-Control-Allow-Origin" value="*" /> </customHeaders> </httpProtocol>