T4MVC 没有生成常量?
为什么 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新(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