如何从Electron + Angle中在Adobe中打开pdf

时间:2018-07-23 16:26:28

标签: angular electron

我们有一个用角和电子构建的桌面应用程序。在一种情况下,响应为pdf,我想在Adobe或系统默认查看器中打开pdf响应。以前有人遇到过这种情况,如果是这样,请让我知道如何实现。

1 个答案:

答案 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'));