打开新窗口时 debugger 拦截,以查看调用栈排查问题

在日常 bug 修复中,免不了遇到一些打开新窗口后参数不对,或是想要添加新参数的情况。这时候我们可以通过拦截打开新窗口的行为,以便查看调用栈,排查问题或者找到对应的代码位置以添加代码。

下面是我记录的一些自己有用到的一些方法,帮助我在开发中更快的定位代码🚀

情况1: 使用 window.open 打开新窗口

触发跳转代码

javascript 复制代码
window.open('https://example.com', '_blank');

拦截方式

可以通过重写 window.open 方法,以便捕获所有通过 window.open 打开的行为:

javascript 复制代码
const originalWindowOpen = window.open;

window.open = function(url, target, features) {
  debugger; // 捕获所有通过 window.open 打开的行为
  console.info('window.open 打开:', url, target, features);
  return originalWindowOpen.call(window, url, target, features);
};

情况2: 使用a标签进行的跳转

触发跳转代码

javascript 复制代码
let a = document.createElement('a')
a.setAttribute('href', `${url}/${params}`)
a.setAttribute('target', '_blank')
a.click()
a.remove()

拦截方式

javascript 复制代码
const originalAnchorClick = HTMLAnchorElement.prototype.click;

HTMLAnchorElement.prototype.click = function() {
  debugger; // 捕获所有通过 a.click() 打开的行为
  console.info('a标签打开:', this.href, this.target);
  return originalAnchorClick.call(this);
};

总方法

javascript 复制代码
const DebuggerTool = {
  originalWindowOpen: window.open,
  originalAnchorClick: HTMLAnchorElement.prototype.click,

  init: function () {
    this.interceptWindowOpen();
    this.interceptAnchorClick();
  },

  interceptWindowOpen: function () {
    window.open = function (url, target, features) {
      debugger;
      console.info("window.open 打开:", url, target, features);
      return DebuggerTool.originalWindowOpen.call(
        window,
        url,
        target,
        features
      );
    };
  },

  interceptAnchorClick: function () {
    HTMLAnchorElement.prototype.click = function () {
      debugger;
      console.info("a标签打开:", this.href, this.target);
      return DebuggerTool.originalAnchorClick.call(this);
    };
  },
};

DebuggerTool.init();
相关推荐
桂月二二4 小时前
探索前端开发中的 Web Vitals —— 提升用户体验的关键技术
前端·ux
CodeClimb5 小时前
【华为OD-E卷 - 第k个排列 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
hunter2062065 小时前
ubuntu向一个pc主机通过web发送数据,pc端通过工具直接查看收到的数据
linux·前端·ubuntu
qzhqbb5 小时前
web服务器 网站部署的架构
服务器·前端·架构
刻刻帝的海角5 小时前
CSS 颜色
前端·css
浪浪山小白兔6 小时前
HTML5 新表单属性详解
前端·html·html5
lee5767 小时前
npm run dev 时直接打开Chrome浏览器
前端·chrome·npm
2401_897579657 小时前
AI赋能Flutter开发:ScriptEcho助你高效构建跨端应用
前端·人工智能·flutter
光头程序员7 小时前
grid 布局react组件可以循数据自定义渲染某个数据 ,或插入某些数据在某个索引下
javascript·react.js·ecmascript
limit for me7 小时前
react上增加错误边界 当存在错误时 不会显示白屏
前端·react.js·前端框架