欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决asp.net mvc UpdateModel更新对象后出现null问题的方法

程序员文章站 2023-12-22 08:48:58
在用asp.net mvc 4.0做项目的时候遇到的这种情况: 情况分析: “在填写表单的时候,有一些表单没有填写,留空,然后直接post 提交表单,action中用u...

在用asp.net mvc 4.0做项目的时候遇到的这种情况:
情况分析:
“在填写表单的时候,有一些表单没有填写,留空,然后直接post 提交表单,action中用updatemodel 来更新model,结果发现那些没有填写的表单字段全部变成null。”
原因分析:
项目中做了判断null不能提交更新到数据库中,所以导致一直提交不上去
后来网上查了一下找到了解决办法,我在这里分享一下,方便以后遇到这种情况的朋友可以方便解决
解决方法:
新建一个类继承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();

这样问题就可以解决了,小编也尝试进行了操作,结果成功了,希望也能帮助这方面有困扰的童鞋解决实际问题。

上一篇:

下一篇: