Typescript电子渲染器进程无法正常工作

时间:2018-08-10 09:13:18

标签: javascript typescript electron

我正在使用电子团队here提供的样板。主要过程正在运行,但是当我使用渲染器过程创建新窗口时,会出现此错误

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

我搜索的原因是因为.remote在编译的打字稿中没有出现在javascript中。代码是

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运行时,它可以工作。 那么如何处理打字稿代码?

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。

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


在我的index.html中,我更改了

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

瞧!有效。

我不确定为什么,但是由于renderer.ts尚未即时编译和要求,因此《电子打字稿指南》均无法正常工作,并且Github上存在一个未解决的问题(已经存在了几个月),没有响应。 好吧,这是我的解决方法。我不知道这会带来什么负面影响。