Is it possible to access the QNetworkCookieJar
in QtWebEngine
like you could before with QtWebKit
? I can't find it anywhere in the documentation...
相关问题
- Sorting 3 numbers without branching [closed]
- QML: Cannot read property 'xxx' of undefin
- How to compile C++ code in GDB?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
相关文章
- ubuntu20.4中c#通过c++库调用python脚本
- Qt槽函数自动执行多遍
- Class layout in C++: Why are members sometimes ord
- How to mock methods return object with deleted cop
- Which is the best way to multiply a large and spar
- C++ default constructor does not initialize pointe
- Selecting only the first few characters in a strin
- What exactly do pointers store? (C++)
From Qt 5.6 onwards you can use the QWebEngineCookieStore class.
QNetworkCookie is available for QtWebEngine, but only through the old
QNetworkAccessManager
asQtWebEngine
is using its own HTTP implementation. You can notice this while reading one of the examples:Please refer to the following example for details:
WebEngine Tab Browser Example