Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.9k views
in Technique[技术] by (71.8m points)

node.js - webContents.send and ipcRenderer.on Not Working

I'm pretty new to NodeJS, but I do have quite a bit of experience with vanilla JS.

In the following code, what exactly am I doing wrong here?

It doesn't console.log anything in the app's developer console, so I'm assuming the channel of communication is broken somehow?

Does it have anything to do with the fact that readdir is asynchronous?

index.js

fs.readdir(__dirname, (err, files)=>{
  files.forEach((file, index)=>{
    console.log('display', __dirname+'\'+file) // this prints everything as expected
    mainWindow.webContents.send('display', __dirname+'\'+file)
    // mainWindow.send(...) doesn't work either
  })
})

index.html

const electron = require('electron')
const {ipcRenderer} = electron
const con = document.getElementById('con')

ipcRenderer.on('display', (e, arg)=>{
  const div = document.createElement('div')
  const txt = document.createTextNode(arg)
  div.appendChild(txt)
   con.appendChild(div)

   console.log(e)   // neither this
   console.log(arg) // nor this prints anything to the app's developer console
 })

Here is a CODEPEN with ALL of the code.

Solution

It turns out wrapping webContents.send in another function did the trick. However, I'm not sure why this is the case.

mainWindow.webContents.on('did-finish-load', ()=>{
  mainWindow.webContents.send('display', __dirname+'\'+file)
})

Would somebody care to explain to me why I have to wrap webContents.send within another function for it to work properly?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you send the message to the window as soon as it's created it won't have time to load the page and load the js to recieve the message.

The solution is to wrap it in the 'did-finish-load' event so it waits for the page to be ready before sending the message, like so:

mainWindow.webContents.on('did-finish-load', function () {
    mainWindow.webContents.send('channelCanBeAnything', 'message');
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...