QtWebEngine 填坑
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QtWebEngine 填坑相关的知识,希望对你有一定的参考价值。
参考技术A qputenv("QTWEBENGINE_REMOTE_DEBUGGING", "1112"); //使本地可以调试html页面浏览器输入 localhost:1112 即可
qputenv("QTWEBENGINE_CHROMIUM_FLAGS", "--disable-features=UseModernMediaControls");
这样可以正常显示
connect(this, &QWebEngineViewEx::renderProcessTerminated,
this, &WebEngineViewEx::OnRenderReopen); //捕获renderProcessTerminated信号,在OnRenderReopen中重启render,
qputenv("QTWEBENGINE_CHROMIUM_FLAGS", "--single-process");
以上是关于QtWebEngine 填坑的主要内容,如果未能解决你的问题,请参考以下文章
QtWebEngine 和 WebView 有啥区别? [复制]