公众号开发调试

使用 x5 内核的调试方式

使用 xweb 内核的调试方式

xweb 目前不支持开启 vConsole 模式调试,只能连真机调试

  1. http://debugxweb.qq.com/?inspector=true
  2. https://developer.chrome.com/docs/devtools/remote-debugging/

其他

微信浏览器中 window.location.href 失效

给需要跳转的 URL 后添加随机数 或者 时间戳 即可;

window.location.href = 'https://example.com?v=' + (new Date().getTime());

window.location.href = 'https://example.com?v=' + Math.random();