1

我有一个简单的 Qt 应用程序,可以在QWebEngineView. 我想将url中带有“static”一词的所有http请求重定向到本地文件。使用WebUrlRequestInterceptor我重新实现了该interceptRequest方法。这是代码:

class MyWebUrlRequestInterceptor : public QWebEngineUrlRequestInterceptor
{
public:
    void interceptRequest(QWebEngineUrlRequestInfo &info) {
        if (info.requestUrl().toString().contains("static")) {
            QString newUrl = QDir::currentPath() + info.requestUrl().toString().mid(21, info.requestUrl().toString().length());
            qDebug() << "new url = " << newUrl;
            info.redirect(QUrl::fromLocalFile(newUrl));
        }
    }
};

在主要功能中我做了

MyWebUrlRequestInterceptor *wuri = new MyWebUrlRequestInterceptor();
QWebEngineProfile::defaultProfile()->setRequestInterceptor(wuri);

interceptRequest似乎工作正常,但我收到一条消息。

不允许加载本地资源

我在网上搜索,我很多人都说我应该添加--disable-web-security标志。所以我在我的.pro文件中做了:

QMAKE_CXXFLAGS += --disable-web-security

但这似乎不起作用。难道我做错了什么?有不同的解决方案吗?我可以制作自定义协议来提供本地文件并在 Qt 中重定向到它们作为解决方法吗?

我正在使用 Qt 5.9.1 和 QtCreator 4.3.1。

4

1 回答 1

1

我会使用QWebEngineUrlRequestInfo::block阻止请求并在QWebEngineView中加载本地文件(甚至动态读取本地文件并通过QWebEngineView::setHtml将其内容传递给视图)。

或者在本地侦听传入的 http 请求,使用本地目录作为 web 根目录,并最终在需要时重定向到本地主机,这意味着使用外部 web 服务器或构建一个最小的 web 服务器,可能集成在您的应用程序中。如果你去集成它,我会考虑这个:https ://github.com/cesanta/mongoose 。

于 2017-11-10T14:18:48.660 回答