【问题标题】:Electron IPCMain can't access variableElectron IPCMain 无法访问变量
【发布时间】:2020-08-27 02:04:58
【问题描述】:

我有一个电子应用程序,其 main.js 文件以更 oo 风格编写。当我从渲染进程发送请求时,它会正常到达。问题是当它试图为一个对象调用一个方法时,它声明该对象是未定义的。


const { app, BrowserWindow, Menu, shell, dialog, session, ipcMain, webContents } = require('electron')

class GUI extends BrowserWindow {
    /**
     * Generates a window
     * @param {number} width - The initial width of the window. Default 800
     * @param {number} height - The initial height of the window. Default 600
     * @param {number} minWidth - The minimum width the window can possibly be. Default 800
     * @param {number} minHeight - The minimum height the window can possibly be. Default 600
     * @param {string} backgroundColor - The background colour of the window. Default #FFF
     * @param {string} icon - The path to the icon. Default null
     * @param {string} indexFile - The path to the index file to be loaded. Default null
     * @param {Electron.Menu} menu - The menu that should be displayed. Default null
     */
    constructor(width = 800, height = 600, minWidth = 800, minHeight = 600, backgroundColor = '#FFF', icon = null, indexFile = null, menu = null){
        super({
            width: width,
            height: height,
            minWidth: minWidth,
            minHeight: minHeight,
            icon: icon,
            backgroundColor: backgroundColor,
            frame: false,
            webPreferences: {
                nodeIntegration: true,
                enableRemoteModule: true
            }
        })
        this.fullscreen = false
        this.loadFile(indexFile)
        this.webContents.openDevTools()
        Menu.setApplicationMenu(menu)
        
        
        
    }//Constructor
    closeWin(){
        if(this.webContents.isDevToolsOpened == true){
            this.webContents.closeDevTools()
        }
        this.close()
    }//Close
    minimizeWin(){
        this.minimize()
    }
}

//Called when electron has finished initialising
app.on('ready', () => {
    let mainWindow = new GUI(800,600,800,600,'#323233','./assets/logos/logo.png', 'index.html')
})
//Quit when all windows are closed except on macOS
app.on('window-all-closed', () => {
    if (process.platform !== 'darwin'){
        app.quit()
    }
})
ipcMain.on('windowControl', (event, arg) => {
    console.log(arg)
    // var request = JSON.parse(arg)
    var request = arg
    console.log(request)
    console.log(request.window)
    if (request.window == 'mainWindow'){
        if (request.func == 'openPreferences') {
            let preferencesWindow = new GUI(800,600,800,600,'#323233','./assets/logos/logo.png','./html/preferences.html')
        }
        if (request.func == 'close'){
            mainWindow.closeWin()
        }
        if (request.func == 'min'){
            mainWindow.minimizeWin()
        }
        
    } 
    if (request.window == 'app' && request.func == 'exit' && process.platform !== 'darwin'){
        app.quit()
    }
})

点击关闭按钮时出现的错误:

 A JavaScript error occurred in the main process
Uncaught Exception: iN
ReferenceError: mainWindow is not defined
at IpcMainImpl.<anonymous>
(C:\Users\computronics\source\repos\DC-Model-Railway-Controller\source\desktop
client\main,js:111:13)
at IpcMainImpl.emit (events.js:223:5)
at WebContents.< anonymous> (electron/js2c/browser_init.js:173:8161)
at WebContents.emit (events.js:223:5)

我的目标是从渲染进程向主进程发送请求并执行这些请求。这些请求包括创建和关闭窗口。最小化窗口和其他请求。

从渲染进程发送的示例消息:

{window:'mainWindow', func:'close'}

其他信息

Nodejs: 12.14.1
Chrome: 83.0.4103.122
Electron: 9,1.2
V8: 8,3.110,13-electron.0
OS: Windows_NT x64 10,.0.18362

任何帮助将不胜感激

【问题讨论】:

    标签: javascript node.js electron


    【解决方案1】:
    app.on('ready', () => {
        let mainWindow = new GUI(800,600,800,600,'#323233','./assets/logos/logo.png', 'index.html')
    })
    

    您正在匿名侦听器函数内部定义变量mainWindow。 尝试将变量设为全局变量,如下所示:

    var mainWindow;
    app.on('ready', () => {
        mainWindow = new GUI(800,600,800,600,'#323233','./assets/logos/logo.png', 'index.html')
    })
    

    另一种可能的解决方案:

    if (request.window == 'mainWindow'){
        if (request.func == 'openPreferences') {
            let preferencesWindow = new GUI(800,600,800,600,'#323233','./assets/logos/logo.png','./html/preferences.html')
        }
        if (request.func == 'close'){
            mainWindow.closeWin()
        }
        if (request.func == 'min'){
            mainWindow.minimizeWin()
        }
            
    }
    

    mainWindow 替换为request.window

    if (request.window == 'mainWindow'){
            if (request.func == 'openPreferences') {
                let preferencesWindow = new GUI(800,600,800,600,'#323233','./assets/logos/logo.png','./html/preferences.html')
            }
            if (request.func == 'close'){
                request.window.closeWin()
            }
            if (request.func == 'min'){
                request.window.minimizeWin()
            }
                
        }
    

    【讨论】:

    • 感谢您的帮助。你的第一个建议奏效了。
    猜你喜欢
    • 2021-07-22
    • 2016-07-10
    • 1970-01-01
    • 2020-12-13
    • 2014-06-04
    • 1970-01-01
    • 1970-01-01
    • 2021-09-22
    • 2018-10-17
    相关资源
    最近更新 更多