1

我的文件

messi_fan.py
barcelona_fan.html
jq.js

在同一目录中。

messi_fan.py

        f = open('barcelona_fan.html', 'r')
        html = f.read()
        f.close()
        self.webView = QWebView()
        self.webView.setHtml(html, baseUrl=QUrl('http://local'))
        self.webView.show()

barcelona_fan.html

<script type="text/javascript" src = "jq.js"></script>

我的问题是 jquery 没有在 Qwebview 中加载。如果我在 barcelona_fan.html 中这样使用

<script type="text/javascript" src = "http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>

一切都会奏效。但我想从本地加载 .js 文件。我该怎么做?

4

1 回答 1

2

让 baseUrl 查看本地目录:

path = "c:\\foo\\bar"
self.webView.setHtml(html, baseUrl = QUrl().fromLocalFile(path))

顺便说一句:如果需要,不要忘记:

self.webView.settings().setAttribute(QWebSettings.LocalContentCanAccessRemoteUrls, True)
于 2013-05-02T14:43:11.403 回答