类: Debugger

类: Debugger

备用的 Chrome 远程调试接口。

Process: Main
此类不从 'electron' 模块导出. 它只能作为 Electron API 中其他方法的返回值。

Chrome Developer Tools 在 JavaScript 运行时提供了一个 special binding, 允许与页面进行交互和检测。

  1. const { BrowserWindow } = require('electron')
  2. const win = new BrowserWindow()
  3. try {
  4. win.webContents.debugger.attach('1.1')
  5. } catch (err) {
  6. console.log('Debugger attach failed : ', err)
  7. }
  8. win.webContents.debugger.on('detach', (event, reason) => {
  9. console.log('Debugger detached due to : ', reason)
  10. })
  11. win.webContents.debugger.on('message', (event, method, params) => {
  12. if (method === 'Network.requestWillBeSent') {
  13. if (params.request.url === 'https://www.github.com') {
  14. win.webContents.debugger.detach()
  15. }
  16. }
  17. })
  18. win.webContents.debugger.sendCommand('Network.enable')

实例事件

Event: ‘detach’

返回:

  • event Event
  • reason string - 拆离 debugger 的原因。

调试会话终止时激活 发生在对应的webContents 关闭或者调用 devtools 时,。

Event: ‘message’

返回:

  • event Event
  • method string - 方法名。
  • params any - 远程调试协议中的 parameters 属性定义的事件参数。
  • sessionId string - 附加的调试会话的唯一标识符,将与从 debugger.sendCommand 发送的值匹配。

当正在调试的目标发出条件检测事件时触发。

实例方法

debugger.attach([protocolVersion])

  • protocolVersion string (可选) - 需要调试的协议版本。

添加调试器到 webContents

debugger.isAttached()

返回 boolean - debugger 是否附加到 webContents

debugger.detach()

webContents 里分离调试器.

debugger.sendCommand(method[, commandParams, sessionId])

  • method string - 方法名,应该是一个被 remote debugging protocol 定义的方法。
  • commandParams any (可选) - 具有请求参数的 JSON 对象。
  • sessionId string (可选) - 命令发送到具有关联调试会话 Id 的目标。 初始值可以通过发送 Target.attachToTarget 消息来获得。

返回 Promise<any> - 一个 promise,远程调试协议中的命令描述的“returns”属性定义的响应,或者显示命令失败的错误消息。

向调试目标发送给定的命令。