跳到主要内容
新架构实战课 实操 + 基建 + 原理全维度包揽,抢先掌握 React Native 新架构精髓 立即查看 >Version: 0.70

WebView

Warning Please use the react-native-community/react-native-webview fork of this component instead. To reduce the surface area of React Native, <WebView/> is going to be removed from the React Native core. For more information, please read The Slimmening proposal.

WebView 创建一个原生的 WebView,可以用于访问一个网页。

import React, { Component } from 'react';
import { WebView } from 'react-native';

class MyWeb extends Component {
render() {
return (
<WebView
source={{uri: 'https://github.com/facebook/react-native'}}
style={{marginTop: 20}}
/>
);
}
}

还可以直接嵌入 html 代码:

import React, { Component } from 'react';
import { WebView } from 'react-native';
class MyInlineWeb extends Component {
render() {
return (
<WebView
originWhitelist={['*']}
source={{ html: '<h1>Hello world</h1>' }}
/>
);
}
}

你可以使用这个组件进行网页的来回导航,并且为网页内容设置多方面的属性。

On iOS, the useWebKit prop can be used to opt into a WKWebView-backed implementation.

安全提示: 目前, onMessage and postMessage 方法不能够指定源。当WebView加载某些非预期文档时可能导致跨站脚本攻击。请查阅 MDN 文档获取更多安全方面的细节Window.postMessage() .

查看 Props

查看方法


文档

Props

allowUniversalAccessFromFileURLs

Boolean that sets whether JavaScript running in the context of a file scheme URL should be allowed to access content from any origin. Including accessing content from other file scheme URLs. The default value is false.

类型必需平台
boolAndroid

allowFileAccess

Boolean that sets whether the WebView has access to the file system. The default value is false.

类型Required平台
boolNoAndroid

geolocationEnabled

Set whether Geolocation is enabled in the WebView. The default value is false. Used only in Android.

类型必需平台
boolAndroid

source

在 WebView 中载入一段静态的 html 代码或是一个 url(还可以附带一些 header 选项)。注意如果是载入 html 代码,则需要设置originWhitelist,比如可以设为["*"]来允许运行本地代码。

The object passed to source can have either of the following shapes:

Load uri

  • uri (string) - The URI to load in the WebView. Can be a local or remote file.
  • method (string) - The HTTP Method to use. Defaults to GET if not specified. On Android, the only supported methods are GET and POST.
  • headers (object) - Additional HTTP headers to send with the request. On Android, this can only be used with GET requests.
  • body (string) - The HTTP body to send with the request. This must be a valid UTF-8 string, and will be sent exactly as specified, with no additional encoding (e.g. URL-escaping or base64) applied. On Android, this can only be used with POST requests.

Static HTML

  • html (string) - A static HTML page to display in the WebView.
  • baseUrl (string) - The base URL to be used for any relative links in the HTML.
类别必需
objectNo

automaticallyAdjustContentInsets

控制插入到导航栏,标签栏或者工具条之后的 web 内容是否自适应。默认为true

类型必需
bool

injectJavaScript

在网页加载完成之后,还可以主动调用此方法(以 ref 形式调用)继续给 WebView 注入 JS 代码。注入后会立即执行。

类型必需
function

injectedJavaScript

设置 js 字符串,在网页加载之前注入的一段 JS 代码。

类型必需
string

mediaPlaybackRequiresUserAction

布尔值,控制 HTML5 音频和视频播放前是否需要用户点击。默认为true

类型必需
bool

nativeConfig

覆盖渲染 WebView 的原生组件。启用一个 js 和初始 WebView 一样的定制的原生 WebView。

The nativeConfig prop expects an object with the following keys:

  • component (any)
  • props (object)
  • viewManager (object)
类型必需
object

onError

WebView加载失败时调用的函数

类型必需
function

onLoad

WebView加载成功后执行的函数

类型必需
function

onLoadEnd

函数,当加载结束调用,不管是成功还是失败。

类型必需
function

onLoadStart

WebView刚开始加载时调用的函数

类型必需
function

onMessage

在 webview 内部的网页中调用 window.postMessage 方法时可以触发此属性对应的函数,从而实现网页和 RN 之间的数据交换。 设置此属性的同时会在 webview 中注入一个 postMessage 的全局函数并覆盖可能已经存在的同名实现。

网页端的 window.postMessage 只发送一个参数 data,此参数封装在 RN 端的 event 对象中,即 event.nativeEvent.data。data 只能是一个字符串。

类型必需
function

onNavigationStateChange

当导航状态发生变化的时候调用。

类型必需
function

renderError

设置一个函数,返回一个视图用于显示错误。

类型必需
function

renderLoading

设置一个函数,返回一个加载指示器。。为了使用这个属性必须将 startInLoadingState 属性设置为 true。

类型必需
function

scalesPageToFit

布尔值,控制网页内容是否自动适配视图的大小,同时启用用户缩放功能。默认为true

On iOS, when useWebKit=true, this prop will not work.

类型必需
bool

onShouldStartLoadWithRequest

允许为 webview 发起的请求运行一个自定义的处理函数。返回 true 或 false 表示是否要继续执行响应的请求。

类型必需平台
functioniOS

originWhitelist

List of origin strings to allow being navigated to. The strings allow wildcards and get matched against just the origin (not the full URL). If the user taps to navigate to a new page but the new page is not in this whitelist, the URL will be handled by the OS. The default whitelisted origins are "http://" and "https://".

类型必需
array of strings

startInLoadingState

布尔值,控制WebView第一次加载时是否显示加载视图(如指示器)。当设置了renderLoading时必须将这个属性设置为true 才能正常显示。

类型必需
bool

style

设置 WebView的样式。

类型必需
View.style

decelerationRate

指定一个浮点数,用于设置在用户停止触摸之后,此视图应以多快的速度停止滚动。也可以指定预设的字符串值,如"normal"和"fast",分别对应 UIScrollViewDecelerationRateNormal 和 UIScrollViewDecelerationRateFast。

  • normal: 0.998
  • fast: 0.99 (ios web view 默认)
类型必需平台
numberiOS

domStorageEnabled

仅限 Android 平台。指定是否开启 DOM 本地存储。

类型必需平台
boolAndroid

javaScriptEnabled

布尔值,控制是否启用 JavaScript。仅在安卓下使用,因为 IOS 默认为启用 JavaScript。默认值为true

类型必需平台
boolAndroid

mixedContentMode

指定混合内容模式。即 WebView 是否应该允许安全链接(https)页面中加载非安全链接(http)的内容,

  • never (默认) - WebView 不允许安全链接页面中加载非安全链接的内容
  • always - WebView 允许安全链接页面中加载非安全链接的内容。
  • compatibility - WebView 会尽量和浏览器当前对待此情况的行为一致
类型必需平台
stringAndroid

thirdPartyCookiesEnabled

布尔值,是否启用第三方 cookie。仅在安卓 Lollipop 版本或以上使用,因为安卓 Kitkat 以下版本和 IOS 系统默认都启用第三方 cookie。 默认为 true

类型必需平台
boolAndroid

userAgent

设置 WebView的 user agent 字符串。目前仅支持 Android。

类型必需平台
stringAndroid

allowsInlineMediaPlayback

布尔值,控制 HTML5 视频是在内部播放(非全屏)还是使用原生的全屏控制器。默认为 false

注意 :

为了确保内联播放,除了这个属性需要被设置成true, 在 html 代码中视频元素也需要包含 webkit-playsinline属性。

类型必需平台
booliOS

bounces

布尔值,控制当 webview 内容到达底部时是否进行回弹。默认为 true

类型必需平台
booliOS

contentInset

webview 插入到滑动视图时距离边缘的距离。默认为{top: 0, left: 0, bottom: 0, right: 0}

类型必需平台
object: {top: number, left: number, bottom: number, right: number}iOS

dataDetectorTypes

检测 webview 内容,并将指定类型的数据变成可点击的 URL。默认只对手机号码进行变换。

你可以提供单一类型或者数组类型。

可用的 dataDetectorTypes 如下:

  • phoneNumber
  • link
  • address
  • calendarEvent
  • none
  • all

如果启用新的WKWebView实现,还有额外的三个值可用:

  • trackingNumber
  • flightNumber
  • lookupSuggestion
类型必需平台
string, or arrayiOS

scrollEnabled

控制是否在 WebView中启用滑动。默认为 true

类型必需平台
booliOS

useWebKit

设置 true 的时候会使用新的 WKWebView 来代替老的 UIWebView。

类型必需平台
booleaniOS

url

已过时. 请使用 source 属性代替.

类型必需
string

html

已过时. 请使用 source 属性代替.

类型必需
string

方法

extraNativeComponentConfig()

static extraNativeComponentConfig()

goForward()

goForward();

根据 webview 的历史访问记录往前一个页面。

goBack()

goBack();

根据 webview 的历史访问记录往后一个页面。

reload()

reload();

刷新当前页面。

stopLoading()

stopLoading();

停止载入当前页面。