showOpenDialog 的那个回调在 7.0.0 里面没有了
来源:4-5 展示添加的文件列表

nocilantro
2019-11-03
这里不知道怎么写了,老师能指导一下吗
ipcMain.on('open-music-file', (event) => {
dialog.showOpenDialog(event, {
properties: ['openFile', 'multiSelections'],
filters: [{
name: 'Music', extensions: ['mp3']
}]
}).then(result => {
if (result.filePaths) {
event.sender.send('selected-file', result.filePaths)
}
})
})
写回答
1回答
-
张轩
2019-11-03
看文档还是有滴啊 https://electronjs.org/docs/api/dialog 你根据文档试一下
012019-11-03
相似问题