WebView QML 類

用於顯示 Web 內容的組件。 更多...

import 語句: import QtWebView

特性

信號

方法

詳細描述

WebView is a component for displaying web content which is implemented using native APIs on the platforms where this is available, thus it does not necessarily require including a full web browser stack as part of the application.

To make the Qt WebView module function correctly across all platforms, it is necessary to call QtWebView::initialize () right after creating the QGuiApplication 實例。

注意: Due to platform limitations overlapping the WebView and other QML components is not supported.

特性文檔編製

[read-only] canGoBack : bool

保持 true if it's currently possible to navigate back in the web history.

[read-only] canGoForward : bool

保持 true if it's currently possible to navigate forward in the web history.

[since QtWebView 1.14] httpUserAgent : url

在使用中的用戶代理。

注意: on WinRT, this property affects all WebViews of the application.

該特性在 QtWebView 1.14 引入。

[read-only] loadProgress : int

The current load progress of the web content, represented as an integer between 0 and 100.

[read-only] loading : bool

保持 true WebView is currently in the process of loading new content, false 否則。

另請參閱 loadingChanged ().

[read-only, since QtWebView 6.5] settings : WebViewSettings

Settings object for the WebView .

This property was introduced in QtWebView 6.5.

另請參閱 WebViewSettings .

[read-only] title : string

The title of the currently loaded web page.

url : url

The URL of currently loaded web page. Changing this will trigger loading new content.

The URL is used as-is. URLs that originate from user input should be parsed with QUrl::fromUserInput ().

注意: The WebView does not support loading content through the Qt Resource system.

信號文檔編製

cookieAdded ( string domain , string name )

This signal is emitted when a cookie is added.

The parameters provide information about the domainname of the added cookie.

注意: When Qt WebEngine module is used as backend, cookieAdded signal will be emitted for any cookie added to the underlying QWebEngineCookieStore , including those added by websites. In other cases cookieAdded signal is only emitted for cookies explicitly added with setCookie ().

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

cookieRemoved ( string domain , string name )

This signal is emitted when a cookie is deleted.

The parameters provide information about the domainname of the deleted cookie.

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

loadingChanged ( WebViewLoadRequest loadRequest )

This signal is emitted when the state of loading the web content changes. By handling this signal it's possible, for example, to react to page load errors.

The loadRequest parameter holds the url and status of the request, as well as an errorString containing an error message for a failed request.

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

另請參閱 WebViewLoadRequest .


方法文檔編製

[since QtWebView 6.3] void deleteAllCookies ()

Deletes all the cookies.

This method was introduced in QtWebView 6.3.

[since QtWebView 6.3] void deleteCookie ( string domain , string name )

Deletes a cookie with the specified domain and name .

The cookieRemoved signal will be emitted when the cookie is deleted.

This method was introduced in QtWebView 6.3.

void goBack ()

Navigates back in the web history.

void goForward ()

Navigates forward in the web history.

void loadHtml ( string html , url baseUrl )

加載指定 html content to the web view.

This method offers a lower-level alternative to the url property, which references HTML pages via URL.

External objects such as stylesheets or images referenced in the HTML document should be located relative to baseUrl . For example, if html 檢索自 http://www.example.com/documents/overview.html , which is the base URL, then an image referenced with the relative url, diagram.png ,應該在 http://www.example.com/documents/diagram.png .

注意: The WebView does not support loading content through the Qt Resource system.

另請參閱 url .

void reload ()

重新加載當前 url .

void runJavaScript ( string script , variant callback )

Runs the specified JavaScript. In case a callback function is provided, it will be invoked after the script finished running.

runJavaScript("document.title", function(result) { console.log(result); });
																							

[since QtWebView 6.3] void setCookie ( string domain , string name , string value )

Adds a cookie with the specified domain , name and value .

The cookieAdded signal will be emitted when the cookie is added.

This method was introduced in QtWebView 6.3.

void stop ()

停止加載當前 url .