我不断收到以下关于QtWebEngine
QML 调用的警告。我该如何解决这个问题?
js: A cookie associated with a resource at <URL> was set with `SameSite=None` but without `Secure`.
SameSite 警告 Chrome 77中的此线程表示HttpOnly;Secure;SameSite=Strict
需要设置 cookie 标头 ( )。我如何在 WebEngineView 中做到这一点。
这是我的 QML 片段
WebEngineView {
id:primaryVideo
URL:"http://www.youtube.com/embed/9ldOuVuas1c"
width:500
height:250
}