首页 > 代码库 > asp.net中Request请求参数的自动封装

asp.net中Request请求参数的自动封装

  这两天在测一个小Demo的时候发现一个很蛋疼的问题----请求参数的获取和封装,例:

  方便测试用所以这里是一个很简单的表单.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
</head>
<body>
    <form action="RequestHandler.ashx">
        <table>
            <tr>
                <td>用户名:</td>
                <td><input type="text" name="Username" /></td>
            </tr>
            <tr>
                <td>密码:</td>
                <td><input type="text" name="UserPwd" /></td>
            </tr>
            <tr><td colspan="2"><input type="submit" value="提交"/></td></tr>
        </table>
    </form>
</body>
</html>

    有一个和表单对应的实体类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class EUser
{
    public string Username { get; set; }
    public string UserPwd { get; set; }
}

  在RequestHandler中我们这样做:

<%@ WebHandler Language="C#" Class="RequestHandler" %>

using System;
using System.Web;

public class RequestHandler : IHttpHandler {
    
    public void ProcessRequest (HttpContext context) {
        EUser user = new EUser
        {//下面的操作相信不少像我一样的同学已经做的要吐了..
            Username = context.Request["Username"],
            UserPwd = context.Request["UserPwd"]
        };
        //之后对User进行业务处理....
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }
}

  因为这里测试用所以只有两个字段,假如这里有10个20个字段,是不是有懵逼的感觉,时间长了有木有感觉这样写代码真的很low.一不小心键名复制错了还会出错.自从大二开始学asp一直到现在这操作也不知道多少回了...

  对于用惯了Struts2和asp.net mvc自动封装功能的同学来说还写这个,是不是有一种开了飞机回来一趟却要踩滑板车一步一步蹬的感觉..

  前两天做一个java小项目的时候用到了一个很好用的工具beanutils,它可以帮我们很轻易的封装请求参数,受到它的启发我写了一个小工具类,代码如下:

  

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.Reflection;
using System.Collections.Specialized;

namespace zze
{
    public class NotANumber : Exception
    {
        public NotANumber(string message)
            : base(message) { }
    }
    public class DateFormatError : Exception
    {
        public DateFormatError(string message)
            : base(message) { }
    }
    public class BeanUtil
    {
        public static T FillBean<T>(HttpRequest request)
        {
            PropertyInfo[] Properties = typeof(T).GetProperties();
            T bean = Activator.CreateInstance<T>();
            NameValueCollection nameVals = request.Form;
            for (int i = 0; i < nameVals.Count; i++)
            {
                string keyStr = nameVals.GetKey(i);
                StringBuilder valStr = new StringBuilder();
                string[] vals = nameVals.GetValues(i);
                if (nameVals.GetValues(i).Count() > 1)
                {
                    for (int j = 0; j < vals.Length; j++)
                    {
                        if (j < vals.Length - 1)
                        {
                            valStr.Append(vals[j] + ",");
                        }
                        else
                        {
                            valStr.Append(vals[j]);
                        }
                    }
                }
                else
                {
                    valStr.Append(vals[0]);
                }
                foreach (PropertyInfo pro in Properties)//遍历该类所有属性
                {
                    if (pro.Name.ToLower().Equals(keyStr.ToLower()))
                    {
                        pro.SetValue(bean, valStr.ToString());
                    }
                }
            }
            return bean;
        }

        public static void CopyProperties<T,W>(T source, W target)
        {
            PropertyInfo[] Properties = typeof(T).GetProperties();
            PropertyInfo[] wProperties = typeof(W).GetProperties();
            foreach (PropertyInfo wPro in wProperties)//遍历该类所有属性
            {
                foreach (PropertyInfo pro in Properties)//遍历该类所有属性
                {
                    if (wPro.Name.ToLower().Equals(pro.Name.ToLower()) && wPro.PropertyType.Equals(pro.PropertyType))
                    {
                        wPro.SetValue(target, pro.GetValue(source));
                    }
                    else if (wPro.Name.ToLower().Equals(pro.Name.ToLower()) && !wPro.PropertyType.Equals(pro.PropertyType))
                    {
                        if (wPro.PropertyType.Equals(typeof(DateTime)))
                        {
                            try
                            {
                                wPro.SetValue(target, Convert.ToDateTime(pro.GetValue(source)));
                            }
                            catch (Exception)
                            {
                                throw new DateFormatError("日期格式不正确");
                            }
                          
                            break;
                        }
                        if (wPro.PropertyType.Equals(typeof(int)))
                        {
                            try
                            {
                                wPro.SetValue(target, Convert.ToInt32(pro.GetValue(source)));
                            }
                            catch (Exception)
                            {
                                throw new NotANumber("输入的不是一个数字");
                            }
                            break;
                        }
                        if (wPro.PropertyType.Equals(typeof(double)) || wPro.PropertyType.Equals(typeof(float)))
                        {
                            try
                            {
                                wPro.SetValue(target, Convert.ToDouble(pro.GetValue(source)));
                            }
                            catch (Exception)
                            {
                                throw new NotANumber("输入的不是一个数字");
                            }
                            break;
                        }
                    }
                }
            }
        }
    }

}

  接下来刚才我们的封装就可以改成这样:

<%@ WebHandler Language="C#" Class="RequestHandler" %>

using System;
using System.Web;
using zze;
public class RequestHandler : IHttpHandler {
    
    public void ProcessRequest (HttpContext context) {
        EUser user = BeanUtil.FillBean<EUser>(context.Request);
        //之后对User进行业务处理....
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }

}

  是不是简短清新了很多,注意这里的EUser属性名要和Request中的参数键名相同.

  此时有些同学可能注意到了,我们之前的属性都是string类型的,所以表单中的数据可以很容易的通过反射进行赋值,假如我们属性中出现了其它类型呢?如下:

  

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
</head>
<body>
    <form action="RequestHandler.ashx">
        <table>
            <tr>
                <td>用户名:</td>
                <td><input type="text" name="username" /></td>
            </tr>
            <tr>
                <td>密码:</td>
                <td><input type="text" name="userPwd" /></td>
            </tr>
            <tr>
                <td>年龄:</td>
                <td><input type="text" name="Age" /></td>
            </tr>
            <tr><td colspan="2"><input type="submit" value="提交"/></td></tr>
        </table>

    </form>
</body>
</html>

    此时我们有个年龄字段,作为demo演示我们可以给它int类型.

    这里按照beanutils的使用来说,因为用户在前台页面上的输入都可以用字符串来接收,所以我们可以用一个和页面表单对应的而且属性类型都是string实体来接收,如下:

    

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class UserFormBean
{
    public string Username { get; set; }
    public string UserPwd { get; set; }
    public string Age { get; set; }
}

  这个实体没什么业务意义,纯粹用来接收来自请求的参数内容,与其对应的实体如下,包含一个int属性:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class EUser
{
    public string Username { get; set; }
    public string UserPwd { get; set; }
    public int Age { get; set; }
}

  RequestHandler就可以改成如下代码了:

<%@ WebHandler Language="C#" Class="RequestHandler" %>

using System;
using System.Web;
using zze;
public class RequestHandler : IHttpHandler {
    
    public void ProcessRequest (HttpContext context) {
        UserFormBean userFormBean = BeanUtil.FillBean<UserFormBean>(context.Request);
        EUser user = new EUser();
        BeanUtil.CopyProperties<UserFormBean, EUser>(userFormBean, user);//该方法的作用是将一个属性和其对应的对象的值copy给自己,并完成相应属性的类型转换,第一个参数是copy的来源,第二个参数是copy的目标
        //之后对User进行业务处理....
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }

}

  执行上述代码会发现EUser中的age会成功赋值,当然前台age文本框的值要符合int格式.  

  吃饭了吃饭了.....

 

asp.net中Request请求参数的自动封装