我想在我的模型中将一组文本框(小时,分钟和秒)绑定到TimeSpan。我不想在我的模型中添加小时,分钟和秒钟,而不是将它们作为参数传递给动作方法。
我发现了一些关于使用编辑器模板的讨论,但无法找到一个好的例子。
答案 0 :(得分:7)
有两种方法可以做到这一点。第一种方法是实施IModelBinder
,这需要您将TimeSpan
作为单独的参数传递给您的操作,然后将模型的TimeSpan
属性设置为:< / p>
[HttpPost]
public ActionResult Index(YourViewModel model,
[ModelBinder(typeof(TimeSpanModelBinder))] TimeSpan ts)
{
model.LengthOfTime = ts;
// do stuff
}
第二个是从DefaultModelBinder
派生,然后允许你直接绑定到你的模型:
[HttpPost]
public ActionResult Index([ModelBinder(typeof(TimeSpanModelBinder))] YourViewModel model)
{
// do stuff
}
实施IModelBinder
的好处是您不需要定义自定义属性来标记您的属性。您也不需要在运行时动态查找模型上的属性。
从DefaultModelBinder
派生的优势在于,只要您使用自定义属性,它就适用于您拥有的任何模型,因此如果您需要在多个位置使用此功能,则可以保持操作的一致性。
对于这种方法,实施IModelBinder
只是意味着为BindModel
方法创建实现:
public class TimeSpanModelBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext,
ModelBindingContext bindingContext)
{
if (bindingContext.ModelType != typeof(TimeSpan))
return null;
int hours = 0, minutes = 0, seconds = 0;
hours = ParseTimeComponent(HoursKey, bindingContext);
minutes = ParseTimeComponent(MinutesKey, bindingContext);
seconds = ParseTimeComponent(SecondsKey, bindingContext);
return new TimeSpan(hours, minutes, seconds);
}
public int ParseTimeComponent(string component,
ModelBindingContext bindingContext)
{
int result = 0;
var val = bindingContext.ValueProvider.GetValue(component);
if (!int.TryParse(val.AttemptedValue, out result))
bindingContext.ModelState.AddModelError(component,
String.Format("The field '{0}' is required.", component));
// This is important
bindingContext.ModelState.SetModelValue(component, val);
return result;
}
private readonly string HoursKey = "Hours";
private readonly string MinutesKey = "Minutes";
private readonly string SecondsKey = "Seconds";
}
请注意对bindingContext.ModelState.SetModelValue
的来电。此方法可确保在需要在表单上重新显示模型时,使用正确的数据重新填充模型。这很重要,因为如果用户提交的数据验证失败,它会保留填写所有表单字段的默认功能。
您需要做的第一件事是创建一个自定义属性,您将使用该属性来标记要绑定到的模型的属性:
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class TimeSpanComponentAttribute : Attribute
{
public override bool Match(object obj)
{
return obj.GetType() == typeof(TimeSpan);
}
}
然后,您可以在视图模型中使用它,如下所示:
public class YourViewModel
{
[Required]
public string SomeRequiredProperty { get; set; }
[TimeSpanComponent]
public TimeSpan LengthOfTime { get; set; }
}
这允许我们在自定义模型绑定器中查找用该属性标记的属性:
public class TimeSpanModelBinder : DefaultModelBinder
{
public override object BindModel(ControllerContext controllerContext,
ModelBindingContext bindingContext)
{
var model = this.CreateModel(controllerContext,
bindingContext, bindingContext.ModelType);
bindingContext.ModelMetadata.Model = model;
var target = model.GetType()
.GetProperties(BindingFlags.Public | BindingFlags.Instance)
.Where(p => Attribute.IsDefined(p, typeof(TimeSpanComponentAttribute)))
.Single();
if (target == null)
throw new MemberAccessException(PropertyNotFound);
int hours = 0, minutes = 0, seconds = 0;
hours = ParseTimeComponent(HoursKey, bindingContext);
minutes = ParseTimeComponent(MinutesKey, bindingContext);
seconds = ParseTimeComponent(SecondsKey, bindingContext);
target.SetValue(model, new TimeSpan(hours, minutes, seconds));
return base.BindModel(controllerContext, bindingContext);
}
public int ParseTimeComponent(string component,
ModelBindingContext bindingContext)
{
int result = 0;
var val = bindingContext.ValueProvider.GetValue(component);
if (!int.TryParse(val.AttemptedValue, out result))
bindingContext.ModelState.AddModelError(component,
String.Format("The field '{0}' is required.", component));
// Again, this is important
bindingContext.ModelState.SetModelValue(component, val);
return result;
}
private readonly string HoursKey = "Hours";
private readonly string MinutesKey = "Minutes";
private readonly string SecondsKey = "Seconds";
private readonly string PropertyNotFound = "Could not bind to TimeSpan property. Did you forget to decorate " +
"a property with TimeSpanComponentAttribute?";
}
请注意BindModel
我们如何根据自定义属性找到正确的属性。此外,在我们完成对属性的绑定之后,对BindModel
基本版本的调用允许默认模型绑定器处理其他所有内容。
两种方法都假定文本框的名称分别为Hours
,Minutes
和Seconds
。如果他们不是,只需更改3个私有字符串的值。
我通过这次编辑改变了很多,所以如果我错过了什么,请告诉我。
感谢您提出这个问题 - 我从中学到了很多东西。