如何使用操作方法来解决路由问题异步后缀

时间:2019-09-18 08:04:19

标签: asp.net-mvc routes

我有一个名为IndexAsync的异步操作方法。


        [HttpGet("Index")]
        public async Task<IActionResult> IndexAsync([ModelBinder(typeof(ListCoursesRequestModelBinder))]ListCoursesRequestModel request)
        {
            var model = await _courseService.GetListViewModelAsync(request);

            return View(model);
        }

下面的我的课程控制器


[Route("Course")]
    public sealed class CourseController : Controller
    {

我正在尝试/ Course / Index或/ Course,但它会返回到我的NotFound页面。

控制器路线应该是/ Course或/ Course / Index,但我做不到。

0 个答案:

没有答案