win10系统,electron9,showOpenDialog回调发送事件,在add.js中接收不到
ipcMain.on('open-music-file', (event) => { dialog.showOpenDialog({ properties: ['openFile', 'multiSelections'], filters: [{ name: 'Music', extensions: ['mp3'] }] }).then(({ filePaths }) => { if (filePaths) { event.sender.send('selected-file', filePaths) } }) })
回调需要这样写
同问,有没有解决的?
啊?
同问
有解决吗 我也遇到这个问题
发送的应该是res.filePaths