Fiddler小技巧之添加请求耗时/IP/Method列

      添加列的方法,网上可以查到,这里整理下。

      请求耗时:

      直接加在Handlers{ 后面

           public static BindUIColumn("Time Taken")
           function CalcTimingCol(oS: Session){
             var sResult = String.Empty;
             if ((oS.Timers.ServerDoneResponse > oS.Timers.ClientDoneRequest))
             {
               sResult = (oS.Timers.ServerDoneResponse - oS.Timers.ClientDoneRequest).ToString();
             }
             return sResult;
           }

     请求IP:

     加在main函数后面
     

    static function Main() {
        var today: Date = new Date();
        FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today;
        // Uncomment to add a "Server" column containing the response "Server" header, if present
        //请求IP
        FiddlerObject.UI.lvSessions.AddBoundColumn("Server IP", 120, "X-HostIP");
    }
      

       请求方法:
    Fiddler小技巧之添加请求耗时/IP/Method列_第1张图片

      可以看到列了:)



你可能感兴趣的:(前端相关)