ASP.NET Core 3.0使用属性路由更改默认终结点路由

时间:2019-12-11 09:51:04

标签: c# asp.net-core routing asp.net-mvc-routing

应用程序位于ASP.NET Core上,我们最近迁移到了3.0。

我需要导航到 mycontroller / login ,因此登录操作代替了默认的索引操作,但是要努力更改默认的控制器操作方法。 我一直在获取索引页面,只有当我手动导航至/ login时,我才会获取该页面。 同样作为惯例,我需要保持属性路由。

[Route("/mycontroller")]
    public class MyController : Controller
    {
       private readonly IAuthenticationService _authenticationService;

        public MyController(IAuthenticationService authenticationService)
        {

            _authenticationService = authenticationService;
        }

        [Route("login")]
        [HttpPost("login")]
        [AllowAnonymous]
        public async Task<IActionResult> Login(LoginViewModel model)
        {
            if (ModelState.IsValid)
            {
                try
                {
                    var user = await _authenticationService.PerformCheckAndLogin(model.UserName, model.Password);
                    if (user != null)
                    {
                        var userClaims = new List<Claim>

在我的Configure方法中,我尝试过:

 app.UseEndpoints(endpoints =>
        {
            endpoints.MapControllerRoute("default", "{controller=mycontroller}/{action=login}");
        });

1 个答案:

答案 0 :(得分:0)

在检查用户是否已登录或未重定向到登录页面之后,“索引”操作方法顶部的简单重定向完成了该工作。

[HttpGet]
        public async Task<IActionResult> Index()
        {
            if (true)// implement cookie policy
                return RedirectToAction("Login");