我试图在Razor中编写一个类似于以下内容的助手:
@helper DoSomething<T, U>(Expression<Func<T, U>> expr) where T : class
不幸的是,解析器认为这<T
是HTML元素的开始,最后出现语法错误。是否可以使用Razor创建通用方法的助手?如果是这样,语法是什么?
我试图在Razor中编写一个类似于以下内容的助手:
@helper DoSomething<T, U>(Expression<Func<T, U>> expr) where T : class
不幸的是,解析器认为这<T
是HTML元素的开始,最后出现语法错误。是否可以使用Razor创建通用方法的助手?如果是这样,语法是什么?
static
,除非实现细节禁止使用它;否则,请参见。原因是,有人可以使用通用扩展助手:@helper Foo<T>(this T o) where T : IBar { }
Answers:
不,这是不可能的。您可以改为编写普通的HTML帮助器。
public static MvcHtmlString DoSomething<T, U>(
this HtmlHelper htmlHelper,
Expression<Func<T, U>> expr
) where T : class
{
...
}
然后:
@(Html.DoSomething<SomeModel, string>(x => x.SomeProperty))
或者如果您将模型作为第一个通用参数作为目标:
public static MvcHtmlString DoSomething<TModel, TProperty>(
this HtmlHelper<TModel> htmlHelper,
Expression<Func<TModel, TProperty>> expr
) where T : class
{
...
}
这将允许您像这样调用它(当然假设您的视图是强类型的,但这是一个安全的假设,因为所有视图无论如何都应该是强类型的:-)):
@Html.DoSomething(x => x.SomeProperty)
这是有可能实现与一个帮助文件中@functions
的语法,但如果你想你指的是你的剃须刀式的可读性也需要调用一个常规帮手做HTML适应和完成。
请注意,Helper文件中的函数是静态的,因此,如果您打算使用HtmlHelper实例的方法,则仍需要从页面中传入它。
例如Views \ MyView.cshtml:
@MyHelper.DoSomething(Html, m=>m.Property1)
@MyHelper.DoSomething(Html, m=>m.Property2)
@MyHelper.DoSomething(Html, m=>m.Property3)
App_Code \ MyHelper.cshtml:
@using System.Web.Mvc;
@using System.Web.Mvc.Html;
@using System.Linq.Expressions;
@functions
{
public static HelperResult DoSomething<TModel, TItem>(HtmlHelper<TModel> html, Expression<Func<TModel, TItem>> expr)
{
return TheThingToDo(html.LabelFor(expr), html.EditorFor(expr), html.ValidationMessageFor(expr));
}
}
@helper TheThingToDo(MvcHtmlString label, MvcHtmlString textbox, MvcHtmlString validationMessage)
{
<p>
@label
<br />
@textbox
@validationMessage
</p>
}
...
System.Web.WebPages.Html.HtmlHelper
而不是System.Web.Mvc.HtmlHelper
。该WebPages
版本极有可能不适合您,因为大多数扩展方法都是针对编写的System.Web.Mvc.HtmlHelper
。此外,没有Url
财产,并UrlHelper
要求RequestContext
其处于不可用WebPages
的版本。总而言之,您可能必须通过Mvc
HtmlHelper
。
{MyMvcProject}\App_Code`. It doesn't work as advertised when you place it elsewhere. The error *Cannot access non-static method 'TheThingToDo' in static context* disappears when you move
MyHelper.cshtml`中App_Code
。DoSomething
应该是静态的,以便您可以@MyHelper.DoSomething(..)
在视图中调用。如果将其设置为非静态,则需要创建MyHelper
first 的实例。
在所有情况下,它们TModel
都将是相同的(为视图声明的模型),而在我的情况下,将TValue
是相同的,因此我能够声明Expression参数类型:
@helper FormRow(Expression<Func<MyViewModel, MyClass>> expression) {
<div class="form-group">
@(Html.LabelFor(expression, new { @class = "control-label col-sm-6 text-right" }))
<div class="col-sm-6">
@Html.EnumDropDownListFor(expression, new { @class = "form-control" })
</div>
@Html.ValidationMessageFor(expression)
</div>
}
如果您的模型字段全部string
,则可以替换MyClass
为string
。
用已TValue
定义的方法定义两个或三个助手可能并不坏,但是如果您还有其他可以生成一些难看代码的助手,那么我真的没有找到一个好的解决方案。我尝试@helper
从放置在代码@functions {}
块中的函数包装,但是我一直没找到它来解决这个问题。
TModel
您可能提前知道了。
如果您的主要问题是使用lambda表达式获取要绑定的名称属性值,例如@Html.TextBoxFor(x => x.MyPoperty)
,并且您的组件具有非常复杂的html标签,并且应在razor helper上实现,那么为什么不仅仅创建的扩展方法HtmlHelper<TModel>
来解决绑定名称:
namespace System.Web.Mvc
{
public static class MyHelpers
{
public static string GetNameForBinding<TModel, TProperty>
(this HtmlHelper<TModel> model,
Expression<Func<TModel, TProperty>> property)
{
return ExpressionHelper.GetExpressionText(property);
}
}
}
您的剃须刀助手应该像往常一样:
@helper MyComponent(string name)
{
<input name="@name" type="text"/>
}
然后在这里你可以使用它
@TheHelper.MyComponent(Html.GetNameForBinding(x => x.MyProperty))
@Htm.IdFor
但需要额外的过程才能将其转换.ToHtmlString()
为助手需要字符串的字符串()