fiddler工具中想查看接口的响应时间可以通过
1、工具栏中rules->customize Rules
2、打开文件吧如下代码添加到headers中
function BeginRequestTime(oS: Session)
{
if (oS.Timers != null)
{
return oS.Timers.ClientBeginRequest.ToString();
}
return String.Empty;
}
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;
}
添加成功后如下图所示
添加中customize Rules 会出现打不开或出错的情况,可以直接搜索电脑中的customRules.js,直接贴到headers中也可以实现
原文:https://www.cnblogs.com/rensonghua/p/14066719.html