0

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

换句话说

static function IsPostRequest(oSession : Session) {

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

}
4

1 回答 1

1

尝试这个:

static function IsPostRequest(oSession : Session) {
    return oSession.HTTPMethodIs("POST"); 
}
于 2012-09-07T15:12:04.473 回答