WebEngineProfile QML 類型

Contains settings, scripts, and visited links common to multiple web engine views. 更多...

import 語句: import QtWebEngine
Since: QtWebEngine 1.1
在 C++: QQuickWebEngineProfile

特性

信號

方法

詳細描述

WebEngineProfile contains settings, scripts, and the list of visited links shared by all views that belong to the profile.

Information about visited links is stored together with persistent cookies and other persistent data in a storage determined by the storageName property. Persistent data is stored in a subdirectory determined by the persistentStoragePath property and the cache in a subdirectory determined by the cachePath property. The httpCacheType property describes the type of the cache: in-memory or on-disk . If only the storageName property is set, the other values are generated automatically based on it. If you specify any of the values manually, you should do it before creating any pages that belong to the profile.

Profiles can be used to isolate pages from each other. A typical use case is a dedicated off-the-record profile 對於 隱私瀏覽 mode. An off-the-record profile forces cookies, the HTTP cache, and other normally persistent data to be stored only in memory. The offTheRecord property holds whether a profile is off-the-record.

Each web engine view has an associated profile. Views that do not have a specific profile set share a common one, which is off-the-record by default.

特性文檔編製

cachePath : string

The path to the location where the profile's caches are stored, in particular the HTTP cache.

By default, the caches are stored below QStandardPaths::writableLocation ( QStandardPaths::CacheLocation ) in a directory named using storageName .

downloadPath : string [since QtWebEngine 1.9]

下載文件存儲位置的路徑。

Overrides the default path used for download location.

If set to an empty string, the default path is restored.

注意: 默認情況下,下載路徑為 QStandardPaths::DownloadLocation .

This property was introduced in QtWebEngine 1.9.

httpAcceptLanguage : string [since QtWebEngine 1.2]

The value of the Accept-Language HTTP request-header field.

This property was introduced in QtWebEngine 1.2.

httpCacheMaximumSize : int

The maximum size of the HTTP cache. If 0 , the size will be controlled automatically by QtWebEngine 。默認值為 0 .

另請參閱 httpCacheType .

httpCacheType : enumeration

This enumeration describes the type of the HTTP cache:

常量 描述
WebEngineProfile.MemoryHttpCache Uses an in-memory cache. This is the only setting possible if offTheRecord is set or no storageName is available, which is the default.
WebEngineProfile.DiskHttpCache Uses a disk cache. This is the default value for non off-the-record profile with storageName .
WebEngineProfile.NoCache Disables caching. (Added in 5.7)

httpUserAgent : string

The user-agent string sent with HTTP to identify the browser.

注意: On Windows 8.1 and newer, the default user agent will always report "Windows NT 6.2" (Windows 8), unless the application does contain a manifest that declares newer Windows versions as supported.

isPushServiceEnabled : bool [since QtWebEngine 6.5]

Whether the push messaging service is enabled.

注意: By default the push messaging service is disabled.

注意: Qt WebEngine uses the Firebase Cloud Messaging (FCM) as a browser push service. Therefore, all push messages will go through the Google push service and its respective servers.

This property was introduced in QtWebEngine 6.5.

offTheRecord : bool

Whether the web engine profile is off-the-record . An off-the-record profile forces cookies, the HTTP cache, and other normally persistent data to be stored only in memory. Profile is off-the-record by default.

Changing a profile from off-the-record to disk-based behavior also requires setting a proper storageName .

另請參閱 storageName .

persistentCookiesPolicy : enumeration

This enumeration describes the policy of cookie persistence:

常量 描述
WebEngineProfile.NoPersistentCookies Both session and persistent cookies are stored in memory. This is the only setting possible if offTheRecord is set or no storageName is available, which is the default.
WebEngineProfile.AllowPersistentCookies Cookies marked persistent are saved to and restored from disk, whereas session cookies are only stored to disk for crash recovery. This is the default value for non off-the-record profile with storageName .
WebEngineProfile.ForcePersistentCookies 會話和持久 Cookie 均保存到磁盤並從中還原。

persistentPermissionsPolicy : enumeration [since 6.8]

This enumeration describes the policy for permission persistence:

常量 描述
WebEngineProfile.AskEveryTime The application will ask for permissions every time they're needed, regardless of whether they've been granted before or not. This is intended for backwards compatibility with existing applications, and otherwise not recommended.
WebEngineProfile.StoreInMemory A request will be made only the first time a permission is needed. Any subsequent requests will be automatically granted or denied, depending on the initial user choice. This carries over to all pages using the same QWebEngineProfile instance, until the application is shut down. This is the setting applied if off-the-record is set or no persistent data path is available.
WebEngineProfile.StoreOnDisk Works the same way as PersistentPermissionsInMemory , but the permissions are saved to and restored from disk. This is the default setting.

該特性在 Qt 6.8 引入。

persistentStoragePath : string

The path to the location where the persistent data for the browser and web content are stored. Persistent data includes persistent cookies, HTML5 local storage, and visited links.

By default, the storage is located below QStandardPaths::writableLocation ( QStandardPaths::AppDataLocation ) in a directory named using storageName .

spellCheckEnabled : bool [since QtWebEngine 1.4]

This property holds whether the web engine spell checker is enabled.

This property was introduced in QtWebEngine 1.4.

spellCheckLanguages : list < string > [since QtWebEngine 1.4]

This property holds the list of languages used by the spell checker. Each language should match the name of the .bdic 字典。例如,語言 en-US 將加載 en-US.bdic 字典文件。

拼寫檢查器特徵文檔編製 如何搜索字典文件。

瞭解更多信息關於如何編譯 .bdic 字典,見 拼寫檢查器範例 .

This property was introduced in QtWebEngine 1.4.

storageName : string

The storage name that is used to create separate subdirectories for each profile that uses the disk for storing persistent data and cache.

另請參閱 WebEngineProfile::persistentStoragePath and WebEngineProfile::cachePath .

userScripts : WebEngineScriptCollection [read-only]

Returns the collection of WebEngineScript objects that are injected into all pages that share this profile.

信號文檔編製

[since QtWebEngine 6.7] clearHttpCacheCompleted ()

此信號發射,當 clearHttpCache () operation is completed.

注意: 相應處理程序是 onClearHttpCacheCompleted .

This signal was introduced in QtWebEngine 6.7.

另請參閱 clearHttpCache ().

downloadFinished ( WebEngineDownloadRequest download )

This signal is emitted whenever downloading stops, because it finished successfully, was cancelled, or was interrupted (for example, because connectivity was lost). The download argument holds the state of the finished download instance.

注意: 相應處理程序是 onDownloadFinished .

downloadRequested ( WebEngineDownloadRequest download )

此信號被發射每當下載已被觸發。 download 自變量保持下載的狀態。下載必須被明確接受采用 WebEngineDownloadRequest::accept () or the download will be cancelled by default.

注意: 相應處理程序是 onDownloadRequested .

[since QtWebEngine 1.9] presentNotification ( WebEngineNotification notification )

This signal is emitted whenever there is a newly created user notification. The notification argument holds the WebEngineNotification instance to query data and interact with.

注意: 相應處理程序是 onPresentNotification .

該信號在 QtWebEngine 1.9 引入。

方法文檔編製

[since QtWebEngine 1.3] void clearHttpCache ()

移除 Profile 的緩存條目。

注意: Make sure that you do not start new navigation or any operation on the profile while the clear operation is in progress. The clearHttpCacheCompleted () signal notifies about the completion.

該方法在 QtWebEngine 1.3 引入。

另請參閱 WebEngineProfile::cachePath and clearHttpCacheCompleted ().

[since 6.8] list < webEnginePermission > listAllPermissions ()

返迴 list of webEnginePermission objects, each one representing a single permission currently present in the permissions store. The returned list contains all previously granted/denied permissions for this profile, provided they are of a persistent 類型。

注意: When the persistentPermissionPolicy property is set to AskEveryTime 這將返迴空列錶。

該方法在 Qt 6.8 引入。

另請參閱 queryPermission (), listPermissionsForOrigin (), listPermissionsForPermissionType (),和 webEnginePermission::isPersistent ().

[since 6.8] list < webEnginePermission > listPermissionsForOrigin ( url securityOrigin )

返迴 list of webEnginePermission objects, each one representing a single permission currently present in the permissions store. The returned list contains all previously granted/denied permissions associated with a specific securityOrigin for this profile, provided they are of a persistent 類型。

注意: Since permissions are granted on a per-origin basis, the provided securityOrigin will be stripped to its origin form, and the returned list will contain all permissions for the origin. Thus, passing https://www.example.com/some/page.html is the same as passing just https://www.example.com/.

注意: 當把 persistentPermissionPolicy() 設為 AskEveryTime 這將返迴空列錶。

該方法在 Qt 6.8 引入。

另請參閱 queryPermission (), listAllPermissions (), listPermissionsForPermissionType (),和 webEnginePermission::isPersistent ().

[since 6.8] list < webEnginePermission > listPermissionsForPermissionType ( WebEnginePermission . PermissionType permissionType )

返迴 list of webEnginePermission objects, each one representing a single permission currently present in the permissions store. The returned list contains all previously granted/denied permissions of the provided permissionType . If the permissionType is non-persistent, the list will be empty.

注意: 當把 persistentPermissionPolicy() 設為 AskEveryTime 這將返迴空列錶。

該方法在 Qt 6.8 引入。

另請參閱 queryPermission (), listAllPermissions (), listPermissionsForOrigin (),和 webEnginePermission::isPersistent ().

[since 6.8] void queryPermission ( url securityOrigin , WebEnginePermission . PermissionType permissionType )

返迴 webEnginePermission object corresponding to a single permission for the provided securityOrigin and permissionType . The object may be used to query for the current state of the permission, or to change it. It is not required for a permission to already exist; the returned object may also be used to pre-grant a permission if a website is known to use it.

注意: This may only be used for persistent permission types. Calling it with a non-persistent permissionType will return an invalid object.

該方法在 Qt 6.8 引入。

另請參閱 listAllPermissions (), listPermissionsForOrigin (),和 listPermissionsForPermissionType ().