T4MVC 没有生成常量?

发布于 2024-11-16 19:38:54 字数 1138 浏览 1 评论 0原文

为什么 T4MVC 生成的代码中没有常量字符串?我的猜测是编译时复制常量值...

但是将常量添加到生成的代码中将允许 T4MVC 生成的内容在属性中使用。

我想到这样的事情:

插入@line 400:

        public const String ControllerNameCONST = @"<#=controller.ClassName #>";

插入@line 445:

        [<#= GeneratedCode #>, DebuggerNonUserCode]
        public static class ActionNamesCONST {
<#foreach (var method in controller.ActionMethodsWithUniqueNames) { #>
<#  if (UseLowercaseRoutes) { #>
            public const string <#=method.ActionName #> =     (<#=method.ActionNameValueExpression #>).ToLowerInvariant();
<#  } else { #>
            public const string <#=method.ActionName #> =     <#=method.ActionNameValueExpression #>;
<#  }
} #>
        }

所以有人可以像这样使用它:

[SomeAttribute(HomeController.ControllerNameCONST)]
//instead of 
[SomeAttribute("Home")]
//or
[SomeAttribute(HomeController.ActionNamesCONST.SomeAction)]
//instead of 
[SomeAttribute("SomeAction")]

编辑:将它用作模型上的自动完成属性,因此可以在模型。虽然可以修改自动完成属性以将 ActionResult 作为参数而不是控制器+操作名称...

Why no constant strings in T4MVC generated code? My guess would be compilation-time copying of constant values...

But adding constants to the generated code would allow T4MVC generated stuff to be used in attributes.

I think about something like this:

insert @line 400:

        public const String ControllerNameCONST = @"<#=controller.ClassName #>";

insert @line 445:

        [<#= GeneratedCode #>, DebuggerNonUserCode]
        public static class ActionNamesCONST {
<#foreach (var method in controller.ActionMethodsWithUniqueNames) { #>
<#  if (UseLowercaseRoutes) { #>
            public const string <#=method.ActionName #> =     (<#=method.ActionNameValueExpression #>).ToLowerInvariant();
<#  } else { #>
            public const string <#=method.ActionName #> =     <#=method.ActionNameValueExpression #>;
<#  }
} #>
        }

So someone could use it like this:

[SomeAttribute(HomeController.ControllerNameCONST)]
//instead of 
[SomeAttribute("Home")]
//or
[SomeAttribute(HomeController.ActionNamesCONST.SomeAction)]
//instead of 
[SomeAttribute("SomeAction")]

Edit: used it as an autocomplete attribute on a model, so the "target" controller and action can be specified on the model. Although could rework the autocomplete attribute to take an ActionResult as parameter instead of controller+action names...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七色彩虹 2024-11-23 19:38:54

更新(12/7/2011):此问题现已修复(2.6.65)。请参阅http://mvccontrib.codeplex.com/workitem/7177


T4MVC 确实生成了许多常量。例如

对于控制器名称:MVC.Home.Name

对于操作名称:MVC.Home.ActionNames.About

对于视图名称:MVC.Home.Views .关于

Update (12/7/2011): this issue is now fixed (in 2.6.65). See http://mvccontrib.codeplex.com/workitem/7177.


T4MVC does generate many constants. e.g.

For the controller name: MVC.Home.Name

For the action names: MVC.Home.ActionNames.About

For the view names: MVC.Home.Views.About

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文