我想做的事情似乎很简单。
在我的index.cshtml中,我想显示WizardStepAttribute
值
因此,用户将在每个页面的顶部看到Step 1: Enter User Information
我有一个名为WizardViewModel
的ViewModel。此ViewModel具有IList<IStepViewModel> Steps
的属性
每个“步骤”都实现了接口(interface)IStepViewModel,它是一个空接口(interface)。
我有一个称为Index.cshtml的 View 。该 View 显示EditorFor()
当前步骤。
我有一个自定义ModelBinder,它将View绑定(bind)到基于IStepViewModel
属性实现WizardViewModel.CurrentStepIndex
的具体类的新实例
我创建了一个自定义属性WizardStepAttribute
。
我的每个Steps类都是这样定义的。
[WizardStepAttribute(Name="Enter User Information")]
[Serializable]
public class Step1 : IStepViewModel
....
我有几个问题。
并非每个步骤都将My View强类型键入
WizardViewModel
。我不想为IStepViewModel
的每个具体实现创建一个 View 我以为可以向接口(interface)添加属性,但是随后我必须在每个类中明确实现它。 (所以这没有什么更好的)
我想我可以在接口(interface)中使用反射来实现它,但是,您不能在接口(interface)的方法中引用实例。
最佳答案
可以做到,但是既不容易也不漂亮。
首先,我建议将第二个字符串属性添加到WizardStepAttribute类StepNumber,以使WizardStepAttribute类如下所示:
[AttributeUsage(AttributeTargets.All, AllowMultiple = false)]
public class WizardStepAttribute : Attribute
{
public string StepNumber { get; set; }
public string Name { get; set; }
}
然后,必须装饰每个类:
[WizardAttribute(Name = "Enter User Information", StepNumber = "1")]
public class Step1 : IStepViewModel
{
...
}
接下来,您需要创建一个自定义DataAnnotationsModelMetadataProvider,以获取您的自定义属性的值并将其插入到Step1模型的元数据中:
public class MyModelMetadataProvider : DataAnnotationsModelMetadataProvider
{
protected override ModelMetadata CreateMetadata(
IEnumerable<Attribute> attributes,
Type containerType,
Func<object> modelAccessor,
Type modelType,
string propertyName)
{
var modelMetadata = base.CreateMetadata(attributes, containerType, modelAccessor, modelType, propertyName);
var additionalValues = attributes.OfType<WizardStepAttribute>().FirstOrDefault();
if (additionalValues != null)
{
modelMetadata.AdditionalValues.Add("Name", additionalValues.Name);
modelMetadata.AdditionalValues.Add("StepNumber", additionalValues.StepNumber);
}
return modelMetadata;
}
}
然后,要显示您的自定义元数据,我建议创建一个自定义HtmlHelper来为每个 View 创建标签:
[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
public static MvcHtmlString WizardStepLabelFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression)
{
return WizardStepLabelFor(htmlHelper, expression, null /* htmlAttributes */);
}
[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
public static MvcHtmlString WizardStepLabelFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes)
{
return WizardStepLabelFor(htmlHelper, expression, new RouteValueDictionary(htmlAttributes));
}
[SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification = "Users cannot use anonymous methods with the LambdaExpression type")]
[SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures", Justification = "This is an appropriate nesting of generic types")]
public static MvcHtmlString WizardStepLabelFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IDictionary<string, object> htmlAttributes)
{
if (expression == null)
{
throw new ArgumentNullException("expression");
}
ModelMetadata metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
var values = metadata.AdditionalValues;
// build wizard step label
StringBuilder labelSb = new StringBuilder();
TagBuilder label = new TagBuilder("h3");
label.MergeAttributes(htmlAttributes);
label.InnerHtml = "Step " + values["StepNumber"] + ": " + values["Name"];
labelSb.Append(label.ToString(TagRenderMode.Normal));
return new MvcHtmlString(labelSb.ToString() + "\r");
}
如您所见,自定义帮助器会使用您的自定义元数据创建一个h3标签。
然后,最后,在您看来,请输入以下内容:
@Html.WizardStepLabelFor(model => model)
有两个注意事项:首先,在您的Global.asax.cs文件中,将以下内容添加到Application_Start()中:
ModelMetadataProviders.Current = new MyModelMetadataProvider();
其次,在Views文件夹的web.config中,确保为自定义HtmlHelper类添加 namespace :
<system.web.webPages.razor>
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
<pages pageBaseType="System.Web.Mvc.WebViewPage">
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
<add namespace="YOUR NAMESPACE HERE"/>
</namespaces>
</pages>
</system.web.webPages.razor>
瞧。
法律顾问