本文介绍了如何在 react/webpack 2 设置中导入电子 ipcRenderer的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用电子、react (es6/jsx)、sass、pouchdb 和 webpack 2 设置.我无法导入或要求 ipcRenderer 使主进程和渲染器进程之间的通信成为可能.我的设置可以在这里找到:https://github.com/wende60/timeTracker

using a electron, react (es6 / jsx), sass, pouchdb and webpack 2 setup. I fail to import or require ipcRenderer to make communication between main and renderer process possible. My setup can be found here: https://github.com/wende60/timeTracker

任何提示如何将 ipcRenderer 放入反应组件?

Any hints how to get the ipcRenderer into a react component?

干杯,乔

推荐答案

const electron = window.require('electron');
const ipcRenderer  = electron.ipcRenderer;

我认为这是更好的解决方案,因为它避免了弹出 React 应用程序.

I think it is the better solution because it avoid ejecting the React app.

这篇关于如何在 react/webpack 2 设置中导入电子 ipcRenderer的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 06:20