我们有一个用角和电子构建的桌面应用程序。在一种情况下,响应为pdf,我想在Adobe或系统默认查看器中打开pdf响应。以前有人遇到过这种情况,如果是这样,请让我知道如何实现。
答案 0 :(得分:0)
首先,将该响应保存到本地文件中。然后,将shell.openItem
用作:
const electron = require('electron').shell;
const shell = electron.shell
const path = require('path');
shell.openItem(path.join(__dirname, 'path/to/pdf_file.pdf'));