ASP.NET MVC ajax数组,模型绑定问题。

Posted Shauna.Vayne

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET MVC ajax数组,模型绑定问题。相关的知识,希望对你有一定的参考价值。

当我们在做批量删除的时候,很多情况下,我们只拿到checkbox 的Value。把checkbox中的value放在一个Array中。然后ajax到MVC的控制器中。

在ajax array的时候数据如下图:

技术分享

可以发现,因为新增了一对儿中括号,模型绑定就失败了,我们可以想到重写MVC的BindModel

重写代码如下:

 public class JQueryBundler : DefaultModelBinder//这里要集成DefaultModelBinder
    {
        public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            if (bindingContext.ModelType.IsEnumerableType())
            {
                var key = bindingContext.ModelName + "[]";
                var valueResult = bindingContext.ValueProvider.GetValue(key);
                if (valueResult != null && !string.IsNullOrEmpty(valueResult.AttemptedValue))
                {
                    bindingContext.ModelName = key;
                }
            }
            return base.BindModel(controllerContext, bindingContext);
        }
    }

其中:IsEnumerableType()是System.Type的一个扩展方法.具体实现如下:

/// <summary>
        /// 判断对象是否是Enumber类型的
        /// </summary>
        /// <param name="enumerableType"></param>
        /// <returns></returns>
        public static bool IsEnumerableType(this Type enumerableType)
        {
            return (FindGenericType(typeof(IEnumerable<>), enumerableType) != null);
        }
        public static Type FindGenericType(this Type definition, Type type)
        {
            while ((type != null) && (type != typeof(object)))
            {
                if (type.IsGenericType && (type.GetGenericTypeDefinition() == definition))
                {
                    return type;
                }
                if (definition.IsInterface)
                {
                    foreach (Type type2 in type.GetInterfaces())
                    {
                        Type type3 = FindGenericType(definition, type2);
                        if (type3 != null)
                        {
                            return type3;
                        }
                    }
                }
                type = type.BaseType;
            }
            return null;
        }

最后需要在:Global.asax中加入下面这句话在MVC启动的时候使用我们自定义的模型绑定:

ModelBinders.Binders.DefaultBinder = new 你的模型绑定的类

 

以上是关于ASP.NET MVC ajax数组,模型绑定问题。的主要内容,如果未能解决你的问题,请参考以下文章

为啥 ASP.Net MVC 模型绑定器将空 JSON 数组绑定到 null?

[转] ASP.NET MVC 模型绑定的功能和问题

将多个参数从 ajax post 传递到 asp.net mvc 控制器

ASP.NET MVC 方括号集合模型绑定

Asp.Net MVC 4 模型绑定和剔除绑定以选择元素

ASP.NET MVC学习之模型绑定