如何在电子中嵌入pdf文件

时间:2018-10-16 16:17:10

标签: reactjs electron

我正在使用电子3.0.0,并发生反应。我需要在我的一个React组件中显示一个pdf文件。我尝试过:

Electron PDF viewer

https://github.com/electron/electron/issues/11065

失败。

我用了这3个标签,没有用

<object type="text/html" data={artist.getPdf()} width="100%" height="500" plugins="true"/>
<iframe src={artist.getPdf()} width="100%" height="500" />
<webview src={artist.getPdf()} plugins="true" width="100%" height="500"></webview>

所有这些尝试下载文件的尝试,我只想在一个元素中显示。

我在electron.js文件中输入:

mainWindow = new BrowserWindow({
   ...
   webPreferences: {
     plugins: true
   }
})

0 个答案:

没有答案