首页 > 代码库 > .net将实体转成url参数

.net将实体转成url参数

前言

       在http请求的时候,特别是我们使用post请求的时候,都要将请求的参数转化为url参数,如:a=xxxx&b=xxxx,我们一般都是习惯于使用实体来传送参数,比如OrderRequest 类,这就产生了从实体转化为url参数的过程。
 
实体转化为url带参的方法
    
public static class UrlHelper    {        public static string ObjectToQuery<T>(this T obj, bool isAddEmptyValue = http://www.mamicode.com/true, string orderBy = null, string removeFiled = null /*移除那个字段*/, string fieldReplace = null /*格式old,name*/) where T : class        {            if (obj == null)            {                return "";            }            var properties = obj.GetType().GetProperties();            var list = new List<string>();            foreach (var item in properties)            {                if (removeFiled != null && item.Name == removeFiled)                {                    //移除不必要字段                    continue;                }                var proValue = http://www.mamicode.com/item.GetValue(obj, null);                if ((proValue != null && !string.IsNullOrEmpty(proValue.ToString())) || isAddEmptyValue)                {                    var value = http://www.mamicode.com/proValue != null ? proValue.ToString() : "";                    value = value.Replace("+", "%20");                    var filedName = item.Name;                    //替换key名字,如xxx_Name替换为xxx[0].Name                    if (!string.IsNullOrEmpty(fieldReplace))                    {                        var arry = fieldReplace.Split($);                        if (arry.Length > 1)                        {                            filedName = filedName.Replace(arry[0], arry[1]);                        }                    }                    list.Add(filedName + "=" + value);                }            }            if (orderBy != null)            {                switch (orderBy)                {                    case "asc":                        {                            list = list.OrderBy(m => m).ToList();                            break;                        }                    default:                        {                            list = list.OrderByDescending(m => m).ToList(); break;                        }                }            }            return string.Join("&", list);        }    }
具体参数的意思:
 1、 isAddEmptyValue:是否去掉如果值为空的实体,如:a=&b=xxxx&c=xxxxx,就会将a去除
2、orderBy :是按字母的升序还是降序进行排序
3、removeFiled:移除哪些字段以及值,主要是有些实体虽然有赋值,但是不需要传
4、fieldReplace:主要是替换关键字的,比如我们url要求是passagner[0].name,由于C#不支持[0].这样命名变量名,因此可以将其先命名为passagener__name,然后是__$[0]这样替换
 
实例
class Program    {        static void Main(string[] args)        {            TestRequest testRequest = new TestRequest()            {                contactMobile = "133xxxxxxx",                contactUser = "测试",                passengers__idNumber = "440103xxxxxxxx",                passengers__idType = "1",                passengers__name = "测试"            };            Console.WriteLine("{0}", UrlHelper.ObjectToQuery(testRequest,fieldReplace:"__$[0].",removeFiled:"contactUser"));            Console.ReadLine();        }    }

结果为:

技术分享

结论:
    1、实体转化为url经常会使用,
    2、.net不支持变量名为passagener[0].name 这样的命名,
    3、以后还可以根据自己的情况进行扩展

.net将实体转成url参数