在 asp.net core 的控制器 action 中 return Unauthorized(); ,没有按照期望自动跳转到登录页面,而是直接返回了 401 状态码,而添加了 [Authorize] 标记的 action 没这个问题,可以自动跳转,请问如何解决这个问题?
return Unauthorized();
[Authorize]
用错 ActionResult 了,应该用 return Challenge();
return Challenge();