WebView 组件是一个可以用来承载网页的容器,会自动铺满整个小程序页面。个人类型与海外类型的小程序暂不支持使用

组件 支持度

H5ReactNative

其他相关属性请看各小程序官方文档

微信小程序 WebView

百度小程序 WebView

支付宝小程序 WebView

字节跳动小程序 WebView

  1. import Taro, { Component } from '@tarojs/taro'
  2. // 引入 WebView 组件
  3. import { WebView } from '@tarojs/components'
  4. class App extends Component {
  5. render () {
  6. return (
  7. <WebView src='https://mp.weixin.qq.com/' />
  8. )
  9. }
  10. }