如何在每个模型属性的ASP.NET MVC“编辑”视图中不重复剃刀代码?

如果您使用ASP.NET MVC,然后将下面的代码必须是你熟悉的:如何在每个模型属性的ASP.NET MVC“编辑”视图中不重复剃刀代码?

<div class="row"> 

<div class="form-sm-4">

@Html.LabelFor(m => m.att)

</div>

<div class="form-sm-8">

@Html.EditorFor(m => m.att, new { htmlAttributes = new { @class = "form-control" } })

@Html.ValidationMessageFor(m => m.att)

</div>

</div>

这与标签,输入和确认消息设置基本输入组。

今天我正面临一个拥有数十个属性的POCO课程。我的意思是它在模型类中有N个属性。为了构建HTML,他必须重复上面的代码片段N次。如果DOM有变化,他必须手动更改所有的CSS类,甚至是某些HTML。

我正在寻找一个解决方案,他不必重复上面的代码片段几十个模型propeties。

回答:

创建类:

public static class PropertyExtensions 

{

public static ModelWrapper<T> Wrap<T>(this T property, string propertyName)

{

var genericType = typeof(ModelWrapper<>);

var specificType = genericType.MakeGenericType(typeof(T));

var wrappedPropertyModel = (ModelWrapper<T>)Activator.CreateInstance(specificType);

wrappedPropertyModel.ModelProperty = property;

wrappedPropertyModel.PropertyName = propertyName;

return wrappedPropertyModel;

}

}

public class ModelWrapper<T>

{

public string PropertyName { get; set; }

public T ModelProperty { get; set; }

}

创建一个局部视图:

@model ModelWrapper<object> 

<div class="row">

<div class="form-sm-4">

@Html.Label(Model.PropertyName)

</div>

<div class="form-sm-8">

@Html.EditorFor(m => m.ModelProperty, new { htmlAttributes = new { @class = "form-control" } })

@Html.ValidationMessageFor(m => m.ModelProperty)

</div>

</div>

在主视图中:

@Html.Partial("_PartialViewName", ((object)Model.YourVariableProperty).Wrap("YourVariableProperty")) 

以上是 如何在每个模型属性的ASP.NET MVC“编辑”视图中不重复剃刀代码? 的全部内容, 来源链接: utcz.com/qa/260239.html

回到顶部