electron+react 进程间通信碰见的问题解决
2021/8/7 7:06:30
本文主要是介绍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组件间通信的问题。解决方法如下:
- 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 进程间通信碰见的问题解决的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15useCallback教程:React Hook入门与实践
- 2024-11-15React中使用useContext开发:初学者指南
- 2024-11-15拖拽排序js案例详解:新手入门教程
- 2024-11-15React中的自定义Hooks案例详解
- 2024-11-14受控组件项目实战:从零开始打造你的第一个React项目
- 2024-11-14React中useEffect开发入门教程
- 2024-11-14React中的useMemo教程:从入门到实践
- 2024-11-14useReducer开发入门教程:轻松掌握React中的useReducer
- 2024-11-14useRef开发入门教程:轻松掌握React中的useRef用法
- 2024-11-14useState开发:React中的状态管理入门教程