Ext.net 异常统一管理,铥掉可恶的 Request Failure

Ext.net 异常统一管理,铥掉可恶的 Request Failure

看着这样的框框是不是很不爽

Ext.net 异常统一管理,铥掉可恶的 Request Failure

灭他.也不难..

.如果全部页面都有继承一个自定义的父类

..那整个项目代码量就只有几行了..

单个页面的 同样方式添加

 

 

 

首先 load 事件里面设置ResourceManager 属性

拦截异常显示

处理异常

SiWei.WriteError()  or Ext.net.DirectMethods.WriteError()

复制代码
void BasePage_Load(object sender, EventArgs e)

        {

            if (!X.IsAjaxRequest)

            {

                X.ResourceManager.ShowWarningOnAjaxFailure = false;

              X.ResourceManager.Listeners.AjaxRequestException.Handler = "SiWei.WriteError(arguments[1].errorMessage)";



            }

        }
复制代码

 

异常处理代码

复制代码
  [DirectMethod]

        public void WriteError(string msg)

        {

//            ExceptionPolicy.HandleException(new Exception(msg), "GlobalException");

//            Server.ClearError();

//#if DEBUG

//          //  Console.WriteLine(Server.GetLastError().Message);

//#else

//                        Response.Redirect("~/Error.aspx");



//#endif

//            Response.Redirect("~/Error.aspx");

        }
复制代码

注:这个只处理了 标记了DirectMethod 方法产生的异常

你可能感兴趣的:(request)