一个MWE演示了这个问题:
#include <QMainWindow>
#include <QApplication>
#include <QWidget>
#include <QWebEngineView>
#include <QGridLayout>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QMainWindow w;
auto w1 = new QWidget();
w1->setLayout(new GridLayout());
auto view = new QWebEngineView();
view->load(QUrl("file://C:\\Users\\FruitfulApproach\\Desktop\\AbstractSpacecraft\\MathEnglishApp\\KaTeX_template.html"));
view->show();
w1->layout()->addWidget(view);
w.setCentralWidget(w1);
w.show();
return a.exec();
}
KaTeX_模板.html:
<!DOCTYPE html>
<html>
<head>
<title>MathJax TeX Test Page</title>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script type="text/javascript" async
src="https://example.com/mathjax/MathJax.js?config=TeX-AMS_CHTML">
</script>
</head>
<body>
When $a \ne 0$, there are two solutions to \(ax^2 + bx + c = 0\) and they are
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$
</body>
</html>
必须在第一个代码清单中键入正确的文件路径。
不管怎样,这不是模板,因为我在模板里放了一些纯文本,同样的事情发生了。
我所期望的是QWebEngineView能够加载一个本地文件。我已经尝试过使用正斜杠而不是反斜杠来处理文件路径字符串,每次更改都会在Web视图显示中产生一个“未找到文件”。
当前发生的情况是QWebEngineView只是显示白色。当您右键单击视图时,您可以尝试重新加载或查看源代码,但没有任何React。
我试着加载一个在线网页,它工作。
2条答案
按热度按时间hgb9j2n61#
如果要使用文件路径创建QUrl,请使用QUrl::fromLocalFile():
jucafojl2#
QURL::fromLocalFile可以在Windows下工作,但不能在Linux下工作!这可以在Map示例程序中很容易地重现,方法是用html文件的路径(如Apache 2文件/var/www/html/index. html)替换到Google Maps的链接。