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