尝试在 PDF iframe Electron 中滚动时出现 CORS 错误
CORS error when trying to scroll in a PDF iframe Electron
如何在 iframe 中读取和更改 PDF 的 x / y 坐标,我的 iframe 如下所示:<iframe id="pdf-interface" class="pdf-interface" src=path></iframe>
其中 path
是 PDF 文件的本地路径。
到目前为止,我尝试过的所有尝试都失败了,并显示错误消息:Uncaught DOMException: Blocked a frame with origin "http://127.0.0.1:8080" from accessing a cross-origin frame
.
有什么方法可以解决这个问题或有其他方法吗?
您无法直接访问跨源 iframe。
在 Quentin 的回答中阅读更多相关信息
您可能也会对 Willy Wonka 的回答感兴趣 ,其中包含有关如何绕过同源策略的参考。
如何在 iframe 中读取和更改 PDF 的 x / y 坐标,我的 iframe 如下所示:<iframe id="pdf-interface" class="pdf-interface" src=path></iframe>
其中 path
是 PDF 文件的本地路径。
到目前为止,我尝试过的所有尝试都失败了,并显示错误消息:Uncaught DOMException: Blocked a frame with origin "http://127.0.0.1:8080" from accessing a cross-origin frame
.
有什么方法可以解决这个问题或有其他方法吗?
您无法直接访问跨源 iframe。
在 Quentin 的回答中阅读更多相关信息
您可能也会对 Willy Wonka 的回答感兴趣 ,其中包含有关如何绕过同源策略的参考。