0

通过将这个小片段放在 chrome 的控制台中,可以连接到页面中的任何 ajax 调用:

(function(open) {
  XMLHttpRequest.prototype.open = function(method, url, async) {
    console.log('ajax call!'); //do things
    open.call(this, method, url, async);
  };
})(XMLHttpRequest.prototype.open);

将其放在 Gmail 中有效,但在 Google 的新收件箱站点中无效。如果此页面中没有进行 ajax 调用 - 他们使用什么其他方式来获取异步数据?

4

1 回答 1

1

他们可能会从内部 iframe/s 发送 XHR 请求,因此在控制台中覆盖 XMLHttpRequest 将不起作用。

于 2014-12-27T09:31:41.187 回答