4

尝试编写我的第一个提琴手脚本。

如何在帖子到达服务器之前更改帖子正文?

我的意思是,我填写表格,单击提交,然后暂停以更改我想要的内容,最后发送到服务器。

我找到了这个脚本来更改响应,但我想更改请求。

if (oSession.HostnameIs("www.bayden.com") && oSession.oResponse.headers.ExistsAndContains("Content-Type","text/html")){
  oSession.utilDecodeResponse();
  oSession.utilReplaceInResponse('<b>','<u>');
}
4

1 回答 1

4

试试这个

if (oSession.uriContains("/myposturl")) {
   if (oSession.HTTPMethodIs("POST")){
      oSession["x-breakrequest"]="pause";
   }
}

OnBeforeRequest

于 2012-04-18T18:03:33.303 回答