用Electron写个带界面的nodejs爬虫的实现方法(3)

const remote = electron.remote; btn_refresh.addEventListener('click', (e) => { const filepath =remote.dialog.showSaveDialog(remote.getCurrentWindow(), { // 过滤文件类型 filters: [{ name: "xls Files", extensions: ['xlsx'] }, { name: 'All Files', extensions: ['*'] } ] }); console.log(filepath); });

运行一下,点击刷新验证码按钮就可以看到熟悉的系统对话框

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/f1c96723389c2d1e238149dab1701bac.html