设备访问

类似基于 Chromium 的浏览器一样, Electron 也提供了通过 web API 访问设备硬件的方法。 大部分接口就像在浏览器调用的 API 一样,但有一些差异需要考虑到。 Electron和浏览器之间的主要区别是请求访问设备时发生的情况。 在浏览器中,用户可以在弹出窗口中允许访问单独的设备。 在 Electron API中,提供了可供开发者自动选择设备或提示用户通过开发者创建的接口选择设备。

Web Bluetooth API

Web Bluetooth API 可以被用来连接蓝牙设备。 为了在 Electron 中使用此 API , 开发者将需要在 webContent 处理 select-bluetooth-device 事件 ,从而与设备请求相关联。

示例

这个示例演示了一个 Electron 应用程序,当点击了 Test Bluetooth 按钮时,它会自动选择第一个可用的蓝牙设备。

  • index.html
  • main.js
  • renderer.js
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
  6. <title>Web Bluetooth API</title>
  7. </head>
  8. <body>
  9. <h1>Web Bluetooth API</h1>
  10. <button id="clickme">Test Bluetooth</button>
  11. <p>Currently selected bluetooth device: <strong id="device-name""></strong></p>
  12. <script src="./renderer.js"></script>
  13. </body>
  14. </html>
  1. const {app, BrowserWindow} = require('electron')
  2. const path = require('path')
  3. function createWindow () {
  4. const mainWindow = new BrowserWindow({
  5. width: 800,
  6. height: 600
  7. })
  8. mainWindow.webContents.on('select-bluetooth-device', (event, deviceList, callback) => {
  9. event.preventDefault()
  10. if (deviceList && deviceList.length > 0) {
  11. callback(deviceList[0].deviceId)
  12. }
  13. })
  14. mainWindow.loadFile('index.html')
  15. }
  16. app.whenReady().then(() => {
  17. createWindow()
  18. app.on('activate', function () {
  19. if (BrowserWindow.getAllWindows().length === 0) createWindow()
  20. })
  21. })
  22. app.on('window-all-closed', function () {
  23. if (process.platform !== 'darwin') app.quit()
  24. })
  1. async function testIt() {
  2. const device = await navigator.bluetooth.requestDevice({
  3. acceptAllDevices: true
  4. })
  5. document.getElementById('device-name').innerHTML = device.name || `ID: ${device.id}`
  6. }
  7. document.getElementById('clickme').addEventListener('click',testIt)

Open in Fiddle

WebHID API

WebHID API 可以用于访问HID 设备,例如 键盘和游戏机。 Electron 提供了几个使用 WebHID API的接口:

  • 调用 navigator.hid.requestDevice 并选择高清设备,将触发会话内的 select-hid-device 事件 此外,在调用 navigator.hid.requestDevice 过程中, 如果设备发生插拔(挂载和卸载)将触发 hid-device-addedhid-device-removed 事件。
  • 在第一次调用 navigator.hid.requestDevice 前, 可以通过 ses.setDevicePermissionHandler(handler) 给予设备默认权限, 此外,在 WebContents 的生命周期内,Electron 默认会存储授予的设备许可信息。 如果需要更长期的存储,开发人员可以存储设备许可信息(比如: 在处理 select-hid-device 事件时), 然后通过 setDevicePermissionHandler 从存储的信息中读取
  • ses.setPermissionCheckHandler(handler) 可以用于禁用特定来源的 HID 访问。

Blocklist

默认情况下,Electron 使用与 Chromium 相同的 blocklist 如果您想要覆盖此行为,您可以通过设置 disable-hid-blocklist 标志来做到这一点:

  1. app.commandLine.appendSwitch('disable-hid-blocklist')

示例

这个示例演示了,当 Test WebHID 按钮被点击后,一个Electron 应用将通过 ses.setDevicePermissionHandler(handler)select-hid-device 会话事件 自动选择 HID 设备

  • index.html
  • main.js
  • renderer.js
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
  6. <title>WebHID API</title>
  7. </head>
  8. <body>
  9. <h1>WebHID API</h1>
  10. <button id="clickme">Test WebHID</button>
  11. <h3>HID devices automatically granted access via <i>setDevicePermissionHandler</i></h3>
  12. <div id="granted-devices"></div>
  13. <h3>HID devices automatically granted access via <i>select-hid-device</i></h3>
  14. <div id="granted-devices2"></div>
  15. <script src="./renderer.js"></script>
  16. </body>
  17. </html>
  1. const {app, BrowserWindow} = require('electron')
  2. const path = require('path')
  3. function createWindow () {
  4. const mainWindow = new BrowserWindow({
  5. width: 800,
  6. height: 600
  7. })
  8. mainWindow.webContents.session.on('select-hid-device', (event, details, callback) => {
  9. event.preventDefault()
  10. if (details.deviceList && details.deviceList.length > 0) {
  11. callback(details.deviceList[0].deviceId)
  12. }
  13. })
  14. mainWindow.webContents.session.on('hid-device-added', (event, device) => {
  15. console.log('hid-device-added FIRED WITH', device)
  16. })
  17. mainWindow.webContents.session.on('hid-device-removed', (event, device) => {
  18. console.log('hid-device-removed FIRED WITH', device)
  19. })
  20. mainWindow.webContents.session.setPermissionCheckHandler((webContents, permission, requestingOrigin, details) => {
  21. if (permission === 'hid' && details.securityOrigin === 'file:///') {
  22. return true
  23. }
  24. })
  25. mainWindow.webContents.session.setDevicePermissionHandler((details) => {
  26. if (details.deviceType === 'hid' && details.origin === 'file://') {
  27. return true
  28. }
  29. })
  30. mainWindow.loadFile('index.html')
  31. }
  32. app.whenReady().then(() => {
  33. createWindow()
  34. app.on('activate', function () {
  35. if (BrowserWindow.getAllWindows().length === 0) createWindow()
  36. })
  37. })
  38. app.on('window-all-closed', function () {
  39. if (process.platform !== 'darwin') app.quit()
  40. })
  1. async function testIt() {
  2. const grantedDevices = await navigator.hid.getDevices()
  3. let grantedDeviceList = ''
  4. grantedDevices.forEach(device => {
  5. grantedDeviceList += `<hr>${device.productName}</hr>`
  6. })
  7. document.getElementById('granted-devices').innerHTML = grantedDeviceList
  8. const grantedDevices2 = await navigator.hid.requestDevice({
  9. filters: []
  10. })
  11. grantedDeviceList = ''
  12. grantedDevices2.forEach(device => {
  13. grantedDeviceList += `<hr>${device.productName}</hr>`
  14. })
  15. document.getElementById('granted-devices2').innerHTML = grantedDeviceList
  16. }
  17. document.getElementById('clickme').addEventListener('click',testIt)

Open in Fiddle

Web Serial API

Web Serial API 可以被用来访问串口设备比如 USB 或蓝牙。 为了在 Electron 中使用这个 API, 开发者需要先定义关联在串口请求中的 select-serial-port 会话事件.

有几个额外的 API 用于与 Web Serial API 合作:

  • serial-port-addedserial-port-removed 会话事件可以被用来处理 navigator.serial.requestPort 串口进程中设备的加载和卸载事件
  • 在第一次调用 navigator.serial.requestPort 前, 可以通过 ses.setDevicePermissionHandler(handler) 给予设备默认权限, 此外,在 WebContents 的生命周期内,Electron 默认会存储授予的设备许可信息。 如果需要更长期的存储,开发人员可以存储设备许可信息(比如: 在处理 select-serial-port 事件时), 然后通过 setDevicePermissionHandler 从存储的信息中读取
  • ses.setPermissionCheckHandler(handler) 可以用于禁用特定来源的串口访问。

示例

这个示例项目既演示了一个 Electron 应用通过 ses.setDevicePermissionHandler(handler) 自动选择串口设备,又演示了当 Test Web Serial 按钮被点击后,通过 select-serial-port event on the Session 选择第一个可用的(若已连接) Arduino Uno 串口设备的流程。

  • index.html
  • main.js
  • renderer.js
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
  6. <title>Web Serial API</title>
  7. <body>
  8. <h1>Web Serial API</h1>
  9. <button id="clickme">Test Web Serial API</button>
  10. <p>Matching Arduino Uno device: <strong id="device-name""></strong></p>
  11. <script src="./renderer.js"></script>
  12. </body>
  13. </html>
  1. const {app, BrowserWindow} = require('electron')
  2. const path = require('path')
  3. function createWindow () {
  4. const mainWindow = new BrowserWindow({
  5. width: 800,
  6. height: 600
  7. })
  8. mainWindow.webContents.session.on('select-serial-port', (event, portList, webContents, callback) => {
  9. event.preventDefault()
  10. if (portList && portList.length > 0) {
  11. callback(portList[0].portId)
  12. } else {
  13. callback('') //Could not find any matching devices
  14. }
  15. })
  16. mainWindow.webContents.session.on('serial-port-added', (event, port) => {
  17. console.log('serial-port-added FIRED WITH', port)
  18. })
  19. mainWindow.webContents.session.on('serial-port-removed', (event, port) => {
  20. console.log('serial-port-removed FIRED WITH', port)
  21. })
  22. mainWindow.webContents.session.setPermissionCheckHandler((webContents, permission, requestingOrigin, details) => {
  23. if (permission === 'serial' && details.securityOrigin === 'file:///') {
  24. return true
  25. }
  26. })
  27. mainWindow.webContents.session.setDevicePermissionHandler((details) => {
  28. if (details.deviceType === 'serial' && details.origin === 'file://') {
  29. return true
  30. }
  31. })
  32. mainWindow.loadFile('index.html')
  33. mainWindow.webContents.openDevTools()
  34. }
  35. app.whenReady().then(() => {
  36. createWindow()
  37. app.on('activate', function () {
  38. if (BrowserWindow.getAllWindows().length === 0) createWindow()
  39. })
  40. })
  41. app.on('window-all-closed', function () {
  42. if (process.platform !== 'darwin') app.quit()
  43. })
  1. async function testIt() {
  2. const filters = [
  3. { usbVendorId: 0x2341, usbProductId: 0x0043 },
  4. { usbVendorId: 0x2341, usbProductId: 0x0001 }
  5. ];
  6. try {
  7. const port = await navigator.serial.requestPort({filters});
  8. const portInfo = port.getInfo();
  9. document.getElementById('device-name').innerHTML = `vendorId: ${portInfo.usbVendorId} | productId: ${portInfo.usbProductId} `
  10. } catch (ex) {
  11. if (ex.name === 'NotFoundError') {
  12. document.getElementById('device-name').innerHTML = 'Device NOT found'
  13. } else {
  14. document.getElementById('device-name').innerHTML = ex
  15. }
  16. }
  17. }
  18. document.getElementById('clickme').addEventListener('click',testIt)

Open in Fiddle