docs: improve protocol.handle file examples (#42111)
* docs: improve protocol.handle file examples * chore: fix lint
This commit is contained in:
parent
8d4467bdc4
commit
88f28a302f
1 changed files with 7 additions and 3 deletions
|
@ -9,10 +9,14 @@ An example of implementing a protocol that has the same effect as the
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const { app, protocol, net } = require('electron')
|
const { app, protocol, net } = require('electron')
|
||||||
|
const path = require('node:path')
|
||||||
|
const url = require('node:url')
|
||||||
|
|
||||||
app.whenReady().then(() => {
|
app.whenReady().then(() => {
|
||||||
protocol.handle('atom', (request) =>
|
protocol.handle('atom', (request) => {
|
||||||
net.fetch('file://' + request.url.slice('atom://'.length)))
|
const filePath = request.url.slice('atom://'.length)
|
||||||
|
return net.fetch(url.pathToFileURL(path.join(__dirname, filePath)).toString())
|
||||||
|
})
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -42,7 +46,7 @@ app.whenReady().then(() => {
|
||||||
|
|
||||||
ses.protocol.handle('atom', (request) => {
|
ses.protocol.handle('atom', (request) => {
|
||||||
const filePath = request.url.slice('atom://'.length)
|
const filePath = request.url.slice('atom://'.length)
|
||||||
return net.fetch(url.pathToFileURL(path.join(__dirname, filePath)).toString())
|
return net.fetch(url.pathToFileURL(path.resolve(__dirname, filePath)).toString())
|
||||||
})
|
})
|
||||||
|
|
||||||
const mainWindow = new BrowserWindow({ webPreferences: { partition } })
|
const mainWindow = new BrowserWindow({ webPreferences: { partition } })
|
||||||
|
|
Loading…
Add table
Reference in a new issue