在electron.js中打开文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在electron.js中打开文件相关的知识,希望对你有一定的参考价值。

我想制作electronjs文本编辑器应用程序,我希望能够使用编辑器内部编写的脚本打开新窗口。例如,我的编辑器中有一个小脚本,当我在浏览器中按下打开时,它会在浏览器窗口中打开并加载。这是我的代码的一部分。

function createWindow() {
  // Create the browser window.
  mainWindow = new BrowserWindow({
    width: 800,
    height: 600,
  });

  // and load the index.html of the app.
  mainWindow.loadURL(
    url.format({
      pathname: path.join(__dirname, 'index.html'),
      protocol: 'file:',
      slashes: true,
    })
  );

  // Open the DevTools.
  mainWindow.webContents.openDevTools();

  // Emitted when the window is closed.
  mainWindow.on('closed', function() {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    mainWindow = null;
  });

  // trigger autoupdate check
  autoUpdater.checkForUpdates();
}

我在html中的按钮:

<button id="openBrowser"><img src="img/16x16/diskette.png"/>Open in Browser </button>
答案

如果您尝试在外部窗口中打开它,则需要导入shell

const shell = require('electron').shell

然后你需要使用shell的openExternal方法

shell.openExternal('yourpathhere')

这就是你要追求的吗?

https://github.com/electron/electron/blob/master/docs/api/browser-window.md

以上是关于在electron.js中打开文件的主要内容,如果未能解决你的问题,请参考以下文章

我试图在 Electron.js 中单击按钮时打开新窗口,但未捕获 ReferenceError: require is not defined

当 nativeWindowOpen 在父窗口中为真时,electron.js 中 webview 中基于 target=_blank 的链接未打开

使用 Electron JS 打印 PDF 文件

如何在 Electron.js 中保存画布上绘制的图像

Electron.js:需要远程模块不会让脚本工作

创建 Electron JS 可执行文件(electron-builder 或 electron-forge)