gpt4 book ai didi

Electron - 使用 showOpenDialog 时抛出不允许加载本地资源

转载 作者:行者123 更新时间:2023-12-03 12:20:13 40 4
gpt4 key购买 nike

我只是想用showOpenDialog并加载图像。但是当我选择一个图像应用程序会崩溃。

主.js:

...
ipcMain.on('open-file-dialog', function (event) {
const window = BrowserWindow.getFocusedWindow();

dialog.showOpenDialog(window, {
properties: ['openFile']
}, p => {
console.log(p)
});
})

渲染器.js:

document.querySelector('#select-image').addEventListener('click', function (event) {
ipcRenderer.send('open-file-dialog')
});

当我选择任何此错误显示在控制台中: Not allowed to load local resource: file:///start Electron 版是 8.2.5
编辑1:

此警告(或可能是错误)显示在终端 objc[50899]: Class FIFinderSyncExtensionHost is implemented in both /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit (0x7fff951e61d0) and /System/Library/PrivateFrameworks/FileProvider.framework/OverrideBundles/FinderSyncCollaborationFileProviderOverride.bundle/Contents/MacOS/FinderSyncCollaborationFileProviderOverride (0x11298bdc8). One of the two will be used. Which one is undefined.
编辑2:
我使用 Electron Fiddle 将示例 Gist 放在一起: here

最佳答案

Electron 不允许带有 webSecurity: true 的窗口加载本地文件。
糟糕的解决方案
消除错误的一种方法是简单地将其设置为 false .但这会使您的应用程序使用起来不太安全:

new BrowserWindow({
...
webPreferences: {
webSecurity: false
}
})
很好的解决方案
相反,您要做的是创建一个自定义协议(protocol),然后使用它来加载文件。
第 1 步:创建自定义协议(protocol)
主要工艺:
import { protocol } from 'electron'

...

app.on('ready', async () => {
// Name the protocol whatever you want.
const protocolName = 'your-app-name'

protocol.registerFileProtocol(protocolName, (request, callback) => {
const url = request.url.replace(`${protocolName}://`, '')
try {
return callback(decodeURIComponent(url))
}
catch (error) {
// Handle the error as needed
console.error(error)
}
})
...
注:我不确定协议(protocol)名称是否必须是唯一的,我从未测试过它。如果您只是将协议(protocol)命名为 safe-protocol并且您的应用程序的用户有另一个应用程序 X 已注册 safe-protocol ,您的应用程序要么在打开时抛出错误,要么注册两个应用程序,但当用户尝试使用 app.setAsDefaultProtocolClient 从 URL 打开其应用程序时功能,这两个应用程序都会打开。不确定在这种情况下会发生什么。
第二步:使用协议(protocol)加载文件
方法一:从主进程获取路径:
主要工艺:
ipcMain.on('open-file-dialog', function (event) {
const window = BrowserWindow.getFocusedWindow();

dialog.showOpenDialog(window, { properties: ['openFile'] })
.then(result => {
// Send the path back to the renderer
event.sender.send('open-file-dialog-reply', { path: result.filePaths[0] })
})
.catch(error => {
console.log('Could not get file path')
})
})
渲染器过程:
<img id="image-1">
ipcRenderer.on('open-file-dialog-reply', (event, data) => {
const path = data.path
loadImage(path)
}

function loadImage (path) {
const image1 = document.getElementById('image-1')
image1.src = `safe-file-protocol://${path}`
}
方法二:直接在渲染器中加载路径:
渲染器过程:
<img id="image-1" data-path="C:/test.jpg">
function loadImage () {
const image1 = document.getElementById('image-1')
const path = image1.dataset.path
image1.src = `safe-file-protocol://${path}`
}

loadImage()

关于Electron - 使用 showOpenDialog 时抛出不允许加载本地资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61623156/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com