打字稿电子渲染器进程不起作用



我在这里使用电子团队提供的这个样板。主进程正在工作,但是当我使用渲染器进程创建一个新窗口时,它会给出此错误

Uncaught TypeError: electron_1.BrowserWindow is not a constructor
at HTMLButtonElement

当我搜索时,这是因为编译的打字稿到javascript中没有.remote。代码是

main.ts:

import { app, BrowserWindow } from "electron";
import * as path from "path";
let mainWindow: Electron.BrowserWindow;
function createWindow() {
// Create the browser window.
mainWindow = new BrowserWindow({
height: 600,
width: 800,
});
// and load the index.html of the app.
mainWindow.loadFile(path.join(__dirname, "../index.html"));
// Open the DevTools.
// mainWindow.webContents.openDevTools();
// Emitted when the window is closed.
mainWindow.on("closed", () => {
// 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;
});
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on("ready", createWindow);
// Quit when all windows are closed.
app.on("window-all-closed", () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== "darwin") {
app.quit();
}
});
app.on("activate", () => {
// On OS X it"s common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow();
}
});
// In this file you can include the rest of your app"s specific main process
// code. You can also put them in separate files and require them here.

renderer.ts:

// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
import { BrowserWindow } from "electron";
import * as path from "path";

let childWindow: Electron.BrowserWindow;
const newWindowBtn = document.getElementById('new-window');
newWindowBtn.addEventListener('click', (event) => {
const modalPath = path.join('file://', __dirname, '../modal.html');
childWindow = new BrowserWindow({ width: 400, height: 320 });
childWindow.on('close', () => { childWindow = null; });
childWindow.loadURL(modalPath);
childWindow.show();
});

当我试图不将打字稿代码编译为 javascript 并直接运行时.remote它的工作原理。 那么如何处理打字稿代码呢?

我遇到了同样的问题。

使用 npm 安装快速入门并启动它时,创建了一个名为"Dist"的文件夹。此文件夹中有一个渲染器.js文件。这是将打字稿渲染器文件编译为 JS 的地方。


在我的索引.html中,我更改了


<script> require('./src/renderer.ts') </script>
<script> require('./dist/renderer.js') </script>

瞧!成功了。

我不确定为什么,但是由于renderer.ts没有被编译和动态需要,并且Github上有一个未解决的问题(已经存在了几个月(并且没有响应,因此没有工作。 好吧,这是我的解决方法。我不知道这会造成任何负面影响。

最新更新