如何在移动端app里嵌套web页面之react-native-webview

文章目录


前言

快速上手使用react-native-webview


官方指南,可查看详细使用教程

react-native-webview介绍

React Native WebView是 React Native 的社区维护的 WebView 组件。它旨在替代内置的 WebView(已从核心中移除)。

简单来说,就是可以实现将web页面嵌套在app里面,实现混合开发。

在expo中使用

安装

javascript 复制代码
  // 官方推荐

 npm install --save react-native-webview
 // 对于pnpm
 npm install --save react-native-webview

使用

javascript 复制代码
import React, { Component } from 'react';
import { WebView } from 'react-native-webview';

class MyWeb extends Component {
  render() {
    return (
      <WebView
        source={{ uri: 'https://infinite.red' }}
        style={{ marginTop: 20 }}
      />
    );
  }
}

问题

如果使用npm或pnpm安装,可能报以下错误

报错

javascript 复制代码
Invariant Violation: "main" has not been registered. This can happen if:
* Metro (the local dev server) is run from the wrong folder. Check if Metro is running, stop it and restart it in the current project.
* A module failed to load due to an error and AppRegistry.registerComponent wasn't called., js engine: hermes

解决

版本不匹配问题,可以使用expo直接安装

javascript 复制代码
expo install react-native-webview
相关推荐
JJIAYin5 天前
RN|系统组件之触摸组件及区别 📝
android·前端·react native
尘云逸5 天前
react native学习【6.1】——列表视图
android·学习·react native
JJIAYin11 天前
RN | class 组件和函数式组件
android·前端·react native
SimonLiu00914 天前
React Native 项目 Error: EMFILE: too many open files, watch
javascript·react native·react.js
HelloZheQ14 天前
从零开始:构建一个简单的聊天应用使用 WebSocket 和 React Native
websocket·网络协议·react native
low神14 天前
在macOS上安装Flutter和环境配置
前端·flutter·react native·macos·前端框架
low神17 天前
Flutter面试题、Dart面试题
前端·javascript·flutter·react native·dart·前端面试题
low神20 天前
Flutter入门,Flutter基础知识总结。
前端·javascript·flutter·react native·uni-app·dart
番茄炒蛋君22 天前
关于React-Native使用intent模式实现pda的一些思路
react native
爱lv行23 天前
Redux 在 React Native 中的使用流程
javascript·react native·react.js