我正在使用电子3.0.0,并发生反应。我需要在我的一个React组件中显示一个pdf文件。我尝试过:
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
}
})