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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…