Javascript

electron+react 进程间通信碰见的问题解决

本文主要是介绍electron+react 进程间通信碰见的问题解决,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在写主进程和react组件(渲染进程)间通讯时,碰见了很多的问题,主要如下

  • TypeError:fs.existsSync is not a function
  • Cannot destructure property ‘ipcRenderer’ of ‘window.electron’ as it is undefined.
  • electron react window.require is not a function
    上述三个问题,主要是主进程和raect组件间通信的问题。解决方法如下:
  1. main.js中
var electron = require('electron');
const {ipcMain} = require('electron')
var app = electron.app;     //引用app
var BrowserWindow = electron.BrowserWindow;   //窗口引用

var mainWindow = null;    //声明要打开的主窗口

app.on('ready',()=>{
    mainWindow = new BrowserWindow(
        {
            width:800,
            height:800,
            webPreferences:{
                nodeIntegration: true,   //改默认设置  在主进程中设置,允许使用node语法
             },
        });
    ipcMain.on('editfile',(event,arg)=>{
        console.log(arg);
    })
    mainWindow.loadURL('http://localhost:3000/');mainWindow.loadFile(path.join(__dirname,'./public/index.html'))
    // 关闭窗口时将主窗口设置为null
    mainWindow.on('closed',()=>{
        mainWindow = null;
    })
})

主要是设置webPreferences中的nodeIntegration: true
2.index.html中
在public目录下找到index.html,在index.html中添加下面代码

    <script>global.electron = require('electron')</script>

<body></body>里面 root之前, 具体如下所示

<body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <script>global.electron = require('electron')</script>
    <div id="root"></div>
  </body>

这个时候主进程中有了ipcMain ,也允许node语法的情况下
3.需要加ipcRenderer的react组件(渲染进程)中
引用下面的代码

const electron = window.electron;

这时候需要注意的是, 这时候的引入不是在import React
from ‘react’后面跟,而是写在组件中。例如下面EditFile函数组件

import React from 'react'

export default function EditFile() {
    const electron = window.electron;   //在这里进行引入
    const minWindow = (e)=>{
        e.preventDefault()
        electron.ipcRenderer.send("editfile","pong")
    }
    return (
        <div>
            <h1 onClick={(e)=>minWindow(e)}>editfile</h1>
        </div>
    )
}

这时候去启动react的话,就可以在控制台得到ipcRenderer发来的信息
在这里插入图片描述

这篇关于electron+react 进程间通信碰见的问题解决的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!