4

您将如何使用 Qt 资源系统显示本地 html 文件?显而易见的QtCore.QUrl.fromLocalFile(":/local_file.html")似乎不是正确的语法。

文件 mainwindow.qrc(编译前)

<qresource prefix="/">
    <file alias="html_home">webbrowser_html/program_index.html</file>

文件 ui_mainwindow:

class Ui_MainWindow(object):    
    def setupUi(self, MainWindow):
        #...
        self.WebBrowser = QtWebKit.QWebView(self.Frame3)

文件 webbrower.py

from ui_mainwindow import Ui_MainWindow
import mainwindow_rc

class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
    def __init__(self):
        QtGui.QMainWindow.__init__(self)

        self.setupUi(self)
        #...
        stream = QtCore.QFile(':/webbrowser_html/program_index.html')
        if stream.open(QtCore.QFile.ReadOnly):
            home_html = QtCore.QString.fromUtf8(stream.readAll())
            self.WebBrowser.setHtml()
            stream.close()
4

2 回答 2

7

QUrl需要一个方案,对于资源来说它是qrc://. 文档中的相关部分:

默认情况下,可以在应用程序中以与源树中相同的文件名、:/前缀或带有qrc方案的 URL 访问资源。

例如,文件路径:/images/cut.png或 URL qrc:///images/cut.png将提供对 cut.png 文件的访问权限,该文件在应用程序源树中的位置为images/cut.png.

所以,改用这个:

QtCore.QUrl("qrc:///local_file.html")

编辑

你给文件一个aliasalias="html_home"):

<qresource prefix="/">
    <file alias="html_home">webbrowser_html/program_index.html</file>

路径是现在:/html_home,不是:/webbrowser_html/program_index.html

你应该使用:

QtCore.QUrl("qrc:///html_home")

在你的情况下:

class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
    def __init__(self):
        QtGui.QMainWindow.__init__(self)

        self.setupUi(self)
        #...
        self.WebBrowser.load(QtCore.QUrl('qrc:///html_home'))

(如果您打算使用ekhumoro 的解决方案,您也应该调整它。另请注意,您没有在粘贴中设置页面的 HTML。)

于 2012-09-11T21:10:01.933 回答
0

可以使用以下命令打开本地资源文件QFile

stream = QFile(':/local_file.html')
if stream.open(QFile.ReadOnly):
    self.browser.setHtml(QString.fromUtf8(stream.readAll()))
    stream.close()
于 2012-09-11T20:52:25.070 回答