zoukankan      html  css  js  c++  java
  • Request.From,Request.QueryString转对象

    From表单转化为对象

            public static T RequestFormEntities<T>(HttpRequestBase request) where T : new()
            {
                T entity = Activator.CreateInstance<T>();
                PropertyInfo[] attrs = entity.GetType().GetProperties();
                foreach (PropertyInfo p in attrs)
                {
                    foreach (string key in request.Form.AllKeys)
                    {
                        if (string.Compare(p.Name, key, true) == 0)
                        {
                            try
                            {
                                Type type = p.PropertyType;
                                //判断type类型是否为泛型,因为nullable是泛型类
                                if (type.IsGenericType && type.GetGenericTypeDefinition().Equals(typeof(Nullable<>)))//判断convertsionType是否为nullable泛型类  
                                {
                                    //如果type为nullable类,声明一个NullableConverter类,该类提供从Nullable类到基础基元类型的转换  
                                    System.ComponentModel.NullableConverter nullableConverter = new System.ComponentModel.NullableConverter(type);
                                    //将type转换为nullable对的基础基元类型  
                                    type = nullableConverter.UnderlyingType;
                                }
    
                                p.SetValue(entity, Convert.ChangeType(request.Form[key], type), null);
                            }
                            catch (Exception e)
                            {
                                continue;
                            }
                        }
                    }
                }
                return entity;
            }
    View Code

    Request参数转化为对象

             public static T RequestStringFormEntities<T>(string request) where T : new()
            {
                T entity = Activator.CreateInstance<T>();
                PropertyInfo[] attrs = entity.GetType().GetProperties();
                foreach (PropertyInfo p in attrs)
                {
                    foreach (string key in request.Split('&'))
                    {
                        var _key = key.Split('=')[0];
                        var _value = key.Split('=')[1];
                        if (string.Compare(p.Name, _key, true) == 0)
                        {
                            try
                            {
                                Type type = p.PropertyType;
                                //判断type类型是否为泛型,因为nullable是泛型类
                                if (type.IsGenericType && type.GetGenericTypeDefinition().Equals(typeof(Nullable<>)))//判断convertsionType是否为nullable泛型类  
                                {
                                    //如果type为nullable类,声明一个NullableConverter类,该类提供从Nullable类到基础基元类型的转换  
                                    System.ComponentModel.NullableConverter nullableConverter = new System.ComponentModel.NullableConverter(type);
                                    //将type转换为nullable对的基础基元类型  
                                    type = nullableConverter.UnderlyingType;
                                }
    
                                p.SetValue(entity, Convert.ChangeType(_value, type), null);
                            }
                            catch (Exception e)
                            {
                                continue;
                            }
                        }
                    }
                }
                return entity;
            }
    View Code
  • 相关阅读:
    陶哲轩实分析习题17.3.3
    陶哲轩实分析定理17.3.8 (二)
    《陶哲轩实分析》引理17.2.4证明_导数的唯一性
    陶哲轩实分析定理17.3.8(一)
    陶哲轩实分析定理17.3.8(一)
    《陶哲轩实分析》引理17.2.4证明_导数的唯一性
    键值对在架构设计里的应用
    来自Google、Amazon和Facebook等7大知名互联网的系统扩展经验
    对象的消息模型
    Google的系统工程师(SA)如何工作
  • 原文地址:https://www.cnblogs.com/plming/p/8142949.html
Copyright © 2011-2022 走看看