在Fiddler JavaScript中识别POST请求

时间:2012-09-07 15:05:00

标签: javascript fiddler

我正在为Fiddler编写自定义规则,我想知道您如何识别JavaScript中的请求是POST(即非GET或其他类型)请求?会话和请求对象似乎都没有提供此数据的属性。

换句话说

static function IsPostRequest(oSession : Session) {

    if (oSession. <-- WHAT GOES HERE????? ) 
            return true;
    return false;

}

1 个答案:

答案 0 :(得分:1)

试试这个:

static function IsPostRequest(oSession : Session) {
    return oSession.HTTPMethodIs("POST"); 
}