asp.net 使用JQuery 调用Ashx 后面直接写方法名,通过反射找到对应的方法

using System.Reflection;
public class Industry_Manager : IHttpHandler
{
    HttpRequest gRequest = null; HttpContext gContext = null; HttpResponse gResponse = null; string func = string.Empty; string result = string.Empty; string pageUrl = string.Empty; public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; gContext = context; gRequest = context.Request; gResponse = context.Response; func = gRequest["func"]; MethodInfo method = typeof(Industry_Manager).GetMethod(func); if (method != null) { object[] args = new object[] { result }; method.Invoke(this, args); result = (string)args[0]; } gResponse.Write(result); }
复制代码

js 代码

  url: "http://www.cnblogs.com/Ashx/Industry_Manager.ashx?func=GetIndustryList", //请求数据的页面,后面参数直接跟方法名就可以了,后台通过反射自动查找,并返回数据

复制代码
 public void GetIndustryList(out string result)
    {
        int count = 0; string sort = string.IsNullOrEmpty(gRequest["sort"]) ? "rectime_11022" : gRequest["sort"]; string order = string.IsNullOrEmpty(gRequest["order"]) ? "desc" : gRequest["order"]; string sector = gRequest["sector"]; string name = gRequest["name"]; string sWhere = ""; if (!string.IsNullOrEmpty(sector) && sector != "请选择") { sWhere += " and f002v_10202='" + sector + "'"; } if (!string.IsNullOrEmpty(name)) { sWhere += " and f004v_10202 like '" + name + "%'"; } sWhere = sWhere.TrimStart(" and".ToCharArray()); BLL.vm_dms_allIndustry bll = new BLL.vm_dms_allIndustry(); List<Model.vm_dms_allIndustry> list = bll.GetListRowNumber("vm_dms_allIndustry", "", sWhere, GetPageIndex(), sort, order, GetPageSize(), "*", "f001g_10202", ref count); string strResult = Newtonsoft.Json.JsonConvert.SerializeObject(list); strResult = JsonHelper.JsonReplaceDate1(strResult); strResult = "{ \"total\":" + count + ",\"rows\":" + strResult + "}"; result = strResult; }
复制代码

这样就可以避免写一堆 的switch  case 了

类似于这种代码的可以不用写了

复制代码
public class News_Manager : IHttpHandler
{

    HttpRequest gRequest = null;
    HttpContext gContext = null; HttpResponse gResponse = null; string func = string.Empty; string result = string.Empty; string pageUrl = string.Empty; public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; gContext = context; gRequest = context.Request; gResponse = context.Response; pageUrl = gRequest.UrlReferrer.AbsolutePath;  func = gRequest["func"]; if (!string.IsNullOrEmpty(func)) { switch (func) { case "Get_News_General_List": Get_News_General_List(out result); break; case "News_General_Stock_Edit": News_General_Stock_Edit(out result); break; case "Get_News_General_ById": Get_News_General_ById(out result); break; case "News_General_Stock_Delete": News_General_Stock_Delete(out result); break; case "Get_News_General_ByGuid": Get_News_General_ByGuid(out result); break; case "News_General_Indus_Edit": News_General_Indus_Edit(out result); break; case "News_General_Industry_Delete": News_General_Industry_Delete(out result); break; case "Save": Save(out result); break; case "GetNewsById": GetNewsById(out result); break; case "Get_News_General_Industry_ById": Get_News_General_Industry_ById(out result); break; case "CreateGuid": CreateGuid(out result); break; case "GetStockByIndustry": GetStockByIndustry(out result); break; case "GetPLByNewsIDAndType": GetPLByNewsIDAndType(out result); break; default: break; } } gResponse.Write(result);

转载于:https://www.cnblogs.com/hjtdlx/p/4060909.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值