如何使用QWebView显示HTML。 蟒蛇?(How to display html usin

2019-08-02 17:39发布

如何以HTML格式在控制台显示的网页。

import sys
from PyQt4.QtGui import QApplication
from PyQt4.QtCore import QUrl
from PyQt4.QtWebKit import QWebView

app = QApplication(sys.argv)
view = QWebView()
view.load(QUrl('http://example.com')
# What's next? how to do something like:
# print view.read() ???
# to display something similar to that:
# <html><head></head><body></body></html>

Answer 1:

由于QT是一个异步库,你可能不会有任何结果,如果您立即尝试看看你的WebView的HTML数据调用加载后,因为它立即返回,一旦有结果,将触发loadFinished信号。 当然,你可以尝试,因为我在_result_available方法调用加载后立即做访问HTML数据以同样的方式,但它会返回一个空的页面(这是默认行为)。

import sys
from PyQt4.QtGui import QApplication
from PyQt4.QtCore import QUrl
from PyQt4.QtWebKit import QWebView


class Browser(QWebView):

    def __init__(self):
        QWebView.__init__(self)
        self.loadFinished.connect(self._result_available)

    def _result_available(self, ok):
        frame = self.page().mainFrame()
        print unicode(frame.toHtml()).encode('utf-8')

if __name__ == '__main__':
    app = QApplication(sys.argv)
    view = Browser()
    view.load(QUrl('http://www.google.com'))
    app.exec_()


文章来源: How to display html using QWebView. Python?