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?
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
})
})
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.
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?
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');
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With