我正在为Fiddler编写自定义规则,我想知道您如何识别JavaScript中的请求是POST(即非GET或其他类型)请求?会话和请求对象似乎都没有提供此数据的属性。
换句话说
static function IsPostRequest(oSession : Session) {
if (oSession. <-- WHAT GOES HERE????? )
return true;
return false;
}
答案 0 :(得分:1)
试试这个:
static function IsPostRequest(oSession : Session) {
return oSession.HTTPMethodIs("POST");
}