通过 Qt Webkit 加载特定网站时出现问题

发布于 2024-07-26 21:18:39 字数 418 浏览 3 评论 0原文

我目前正在使用以下 PyQt 代码创建一个简单的浏览器:

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *

app = QApplication(sys.argv)
web = QWebView()
web.load(QUrl("http://www.robeez.com"))
web.show()
sys.exit(app.exec_())

像 google.com 或 stackoverflow.com 这样的网站可以正常工作,但 robeez.com 则不行。 有 Webkit 经验的人知道可能出了什么问题吗? robeez.com 在 Chrome 或 Firefox 等常规浏览器中运行良好。

I am currently using the following PyQt code to create a simple browser:

import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *

app = QApplication(sys.argv)
web = QWebView()
web.load(QUrl("http://www.robeez.com"))
web.show()
sys.exit(app.exec_())

Websites like google.com or stackoverflow.com work fine but robeez.com doesn't. Does anyone with Webkit experience know what might be wrong? robeez.com works fine in a regular browser like Chrome or Firefox.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

独孤求败 2024-08-02 21:18:39

尝试 arora (QtWebKit 上的一个非常简单的包装); 如果它有效,那就是你的代码。 如果没有,那就是网站了。

try arora (a very simple wrapping on top of QtWebKit); if it works, its your code. if it doesn't, its the website.

┈┾☆殇 2024-08-02 21:18:39

由于某种原因 http://www.robeeez.com 我认为重定向到 rebeez.com 确实有效。
在某些情况下,rebeez.com 会发送一个空白的 index.html 页面,dillo 和 wget 也会收到
没有什么比 qt45 演示浏览器更好的了。 那么是浏览器的问题还是网站的设置方式?

For some reason http://www.robeeez.com which I think redirects to rebeez.com DOES work.
In some cases rebeez.com sends out a blank index.html page, dillo and wget also receive
nothing as does the qt45 demo browser. So is it the browser or the way the site is set up??

我只土不豪 2024-08-02 21:18:39

也尝试发送 Accept-Language 标头,然后它对我有用。

Try sending the Accept-Language header also, it then works for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文