主进程为什么不能打印

来源:2-3 进程间通信

妄4

2021-01-05 10:22

const { ipcRenderer } = require("electron");

window.addEventListener("DOMContentLoaded", () => {

  ipcRenderer.send("message", "hello from renderer");

});



// Modules to control application life and create native browser window

const { app, BrowserWindow, ipcMain } = require("electron");


app.on("ready", () => {

  const mainwindow = new BrowserWindow({

    width: 800,

    height: 600,

    webPreferences: {

      //在应用中 可以使用 nodeJs 的API

      nodeIntegration: true

    }

  });

  mainwindow.loadFile("index.html");

  ipcMain.on("message", (event, arg) => {

    console.log(arg);

  });

});



写回答 关注

1回答

  • weixin_慕标6454596
    2021-05-10 01:11:05

    http://img2.mukewang.com/6098178200010cec03820171.jpg
    加这个试试

Electron开发本地音乐播放器

跨平台开发框架Electron,一次编写多个系统使用

4410 学习 · 53 问题

查看课程

相似问题