在 html 中调用 electron 的函数 主进程的函数 nodejs
Posted Bigben
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 html 中调用 electron 的函数 主进程的函数 nodejs相关的知识,希望对你有一定的参考价值。
html是在renderer进程。如果要调用主进程需要用remote
<input type="button" value="cache" onclick="getCache()"> <script> const { remote, ipcRenderer, shell } = require(‘electron‘); const win = remote.getCurrentWindow(); var getCache=()=>{ var size = win.webContents.session.getCacheSize(); }
const mainProcess = remote.require(‘./main.js‘); </script>
electron In action 示例很好:
https://github.com/electron-in-action
以上是关于在 html 中调用 electron 的函数 主进程的函数 nodejs的主要内容,如果未能解决你的问题,请参考以下文章
Electron Builder:“主进程发生错误 - 回调不是函数”