【问题标题】:Typescript Electron Renderer process not working打字稿电子渲染器进程不起作用
【发布时间】:2019-01-17 20:40:21
【问题描述】:

我正在使用电子团队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 运行时,它可以工作。 那么如何处理打字稿代码呢?

【问题讨论】:

    标签: javascript typescript electron


    【解决方案1】:

    我遇到了同样的问题。

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


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

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

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

    瞧!有效。

    我不知道为什么,但是由于 renderer.ts 没有被即时编译和需要,所以 Electron Typescript 指南都没有工作,而且 Github 上有一个未解决的问题(已经存在了几个月)没有回复。 好吧,这是我的解决方法。我不知道这会导致任何负面影响。

    【讨论】:

      猜你喜欢
      • 2017-07-26
      • 2020-10-19
      • 2019-04-11
      • 1970-01-01
      • 2021-07-06
      • 2017-03-25
      • 2020-03-18
      • 1970-01-01
      • 2021-07-20
      相关资源
      最近更新 更多