zoukankan      html  css  js  c++  java
  • 将表单赋予对对象

     
         /// <summary>
            ///  将表单赋予对对象 
            /// </summary>
            /// <typeparam name="T">类型参数</typeparam>
            /// <param name="t">实体对象</param>
            /// <param name="form">表单集合</param>
            public static void GetValue<T>(T t, NameValueCollection form)
            {
                Type type = t.GetType();
                PropertyInfo[] pi = type.GetProperties();
                foreach (PropertyInfo p in pi)
                {
                    if (!string.IsNullOrEmpty(form[p.Name]))
                    {
                        //可空类型
                        if (p.PropertyType.FullName == "System.Nullable`1[[System.DateTime, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
    
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToDateTime(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.DateTime, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToDateTime(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToInt32(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToInt32(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Int64, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToInt64(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Int64, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToInt64(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Decimal, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToDecimal(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Decimal, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToDecimal(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToBoolean(form[p.Name]), null);
                            }
                        }
                        else if (p.PropertyType.FullName == "System.Nullable`1[[System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]")
                        {
                            if (!string.IsNullOrEmpty(form[p.Name]))
                            {
                                p.SetValue(t, Convert.ToBoolean(form[p.Name]), null);
                            }
                        }
                        else
                        {
                            p.SetValue(t, Convert.ChangeType(form[p.Name], p.PropertyType), null);
                        }
    
                    }
                }
            }
  • 相关阅读:
    阿里云ecs环境配置
    linux下Nginx安装Zend Optimizer组件步骤
    phpcms 按价格、按销量、按时间等排序实现思路
    云服务器 ECS Linux Web 环境配置站点的方法
    CentOS7安装和配置FTP
    Centos7安装SVN
    ExtJs桌面组件(DeskTop)
    jsapi支付,提示redirect_uri 参数错误
    php判断来源网址地址并且限制非法来源
    php正则表达式获取表格内容
  • 原文地址:https://www.cnblogs.com/haomo/p/6243325.html
Copyright © 2011-2022 走看看