This is an overview of the most common usage of WebView. For more information about the available properties, methods, or events, head over to the complete API documentation for WebView.
<WebView>
是一个UI组件,可让您在应用中显示Web内容。您可以从URL或本地HTML文件中提取和显示内容,也可以呈现静态HTML内容。
另请参见: HtmlView.
<WebView src="http://nativescript-vue.org/" />
<WebView src="~/html" />
<WebView src="<div><h1>Some static HTML</h1></div>" />
名称 | 类型 | 描述 |
---|---|---|
src | String | 获取或设置显示的Web内容。 有效值:绝对URL,本地HTML文件的路径或静态HTML。 |
名称 | 描述 |
---|---|
loadStarted | 页面开始加载时发出 <WebView> 。 |
loadFinished | 页面加载完成后发出 <WebView> 。 |
Android | iOS |
---|---|
android.webkit.WebView | WKWebView |