如何在QML中使用QWebview设置cookie?
我在 QML 中使用 QWebView。我想显示需要身份验证的网站。数据应通过标准 cookie 传递。 有什么帮助吗?附加链接或示例会很棒。
提前致谢。
I am using QWebView in QML. I want to show web site that needs authentication. Data should be passed via standard cookie.
Any help? Additional link or example would be great.
Thank in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,webkit 使用的默认 QNetworkAccessManager 有自己的(非持久性)cookie jar,又名 QNetworkCookieJar。
这将处理 QWebPage 生命周期内 cookie 的发送和接收。
要在多个页面上保留相同的 cookie jar,您必须:
为了使其持久化,
创建的 QWebPage
保存到设置的持久 cookie jar 的示例:
要使用:
By default, the default QNetworkAccessManager used by webkit have its own (non-persistent) cookie jar, aka QNetworkCookieJar.
This will handle the sending and receiving of cookies during the life span of a QWebPage.
To keep the same cookie jar across multiple pages, you have to:
it to make it persistent
created QWebPage
Example of a persistent cookie jar saved to settings:
To use: