通过 Qt Webkit 加载特定网站时出现问题
我目前正在使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试 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.
由于某种原因 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??
也尝试发送 Accept-Language 标头,然后它对我有用。
Try sending the Accept-Language header also, it then works for me.