在用asp.net mvc 4.0做项目的时候遇到的这种情况
在填写表单的时候,有一些表单没有填写,留空,然后直接post 提交表单,action中用UpdateModel 来更新model,
结果发现那些没有填写的表单字段全部变成null
项目中做了判断null不能提交更新到数据库中,所以导致一直提交不上去
后来上google查了一下找到了解决办法,
我在这里分享一下 方便以后遇到这种情况的朋友可以方便解决
解决方法如下:
新建一个类继承DefaultModelBinder
using System.ComponentModel;
using System.Web.Mvc; namespace CustomerWebsite.Mvc
{
public sealed class EmptyStringToNullModelBinder : DefaultModelBinder
{
protected override void SetProperty(ControllerContext controllerContext,
ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value)
{
if (value == null && propertyDescriptor.PropertyType == typeof(string))
{
value = string.Empty;
} base.SetProperty(controllerContext, bindingContext, propertyDescriptor, value);
}
}
}
然后在Global.asax的Application_Start中替换DefaultModelBinder
ModelBinders.Binders.DefaultBinder = new EmptyStringToNullModelBinder();
这样就可以解决了
另外再附上这个解决方法的原文地址
http://*.com/questions/559846/asp-net-mvc-updatemodel-empty-property
原文中的第一个答案,我试过了没有效果,后来继续看下去,下面的第二个答案改了一点就是现在我发出来这个
我试过了 成功解决了