MVC 5中的索引...“异步”操作名称

时间:2019-07-01 13:56:56

标签: c# asp.net .net asp.net-mvc asp.net-mvc-5

我不确定在MVC 5视图中使用异步表示法的正确方法是什么...

假设我们有

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.MapRoute(
        name: "Default",
        url: "{controller}/{action}/{id}",
        defaults: new { action = "Index", id = UrlParameter.Optional }
    );
}

让我们假设从

更新了Home的{​​{1}}操作
Index

public ActionResult Index() { }

我们应该将操作重命名为public async System.Threading.Tasks.Task<ActionResult> IndexAsync() ,还是最好将其重命名为IndexAsync,因为我们现在应该重命名“ IndexAsync”中所有硬编码的“索引”事件,但是从路由开始,我们应该重定向默认情况下为控制器Index的“操作”,但是现在“首页索引”已在Index中重命名...这里推荐的做法是什么?

0 个答案:

没有答案