- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 react native 中有 android 和 ios 应用程序,它们都使用 webview 将网页显示为应用程序。
由于我必须更改包名称才能将其部署在 google play 上,因为第一个包名称已被占用。我更改了 app.json 文件和 android 文件夹中的所有名称,没关系。
现在我的问题是我需要在我的 ios 文件夹中更改什么,以便我的应用程序在 xcode 中工作。我有这个错误。
Invariant Violation: "RestApp" has notbeen 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.
{
"name": "restapphhopp",
"displayName": "RestApphhopp"
}
索引.js 文件
/**
* @format
*/
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);
最佳答案
这里的问题是 姓名 您正在为您的应用使用
Invariant Violation: "RestApp" 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.
您的索引文件正在使用
应用名称 来自 app.json
姓名 注册您的组件的字段,在您的情况下是
“名称”:“restapphhopp”
moduleName:@"restapphhopp"
关于ios - 由于错误而无法加载模块并且未调用 `AppRegistry.registerComponent`。[ios,xcode],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64167281/
有时我们在 es6 中加载一些东西,比如: import FlatList from 'react-native'; 但有时我们用大括号覆盖这个导入的对象,比如 import {'FlatList'}
几天前,我们的 IOS 发布版本出现了问题。我们得到 Module AppRegistry is not a registered callable module 错误。在调试配置中一切顺利。 最佳答
我从 React Native 开发开始,一开始就遇到了一个问题。尝试运行我的应用程序时出现错误: Invariant Violation: Module AppRegistry is not a r
这个问题已经有答案了: React Native project, index.ios.js or index.android.js not generated (2 个回答) 已关闭 5 年前。 我
我在自学React-Native我遇到了这个奇怪的障碍。在我的里面 App.js我正在尝试导出一个类,然后在我的 App.js 中使用另一个文件在 somePage() 里面功能。我在哪里打电话 试图
I created a new project using react-native init Wevaha,after that I excute it work's properly then I
我在 react native 中有 android 和 ios 应用程序,它们都使用 webview 将网页显示为应用程序。 由于我必须更改包名称才能将其部署在 google play 上,因为第一
我以前使用 AppRegistry.registerComponent() 来设置项目的主文件,但是使用 Expo 创建的项目不支持它。 import { AppRegistry } from 're
我在处理我们团队正在开发的共享 github 项目时遇到问题。我已经为这个问题苦苦挣扎了大约一周,但没有任何运气。 问题是在我团队的计算机上运行的全新克隆无法在我的计算机上正常运行。它抛出错误“Mod
众所周知,如果你想设置app的入口,你会这样做: AppRegistry.registerComponent('App1', () => App1); 为什么第二个参数是 () => App1 而不是
在启动新项目并实现 redux 和 react-navigation 后,我收到此错误 Module AppRegistry is not a registered callable module。
我一直在尝试通过 npm 将外部模块导入我的 React 应用程序,并在遵循 https://www.npmjs.com/package/react-native-material-design 之后
我目前正在尝试获取 ES6 react-native-webpack-server运行在安卓模拟器上。不同之处在于我已经升级了我的 package.json 和 build.grade 以使用 rea
我是 React Native 的新手,但我注意到在主 index.js 文件中,您注册了 App 组件。我认为这类似于将 App 组件附加到 React 中的根元素。我知道我仍然需要导出我创建的每个
AppRegistry.registerComponent 的声明如下: static registerComponent(appKey, componentProvider, section?) a
当我按照 React Native 入门页面中所述运行一个简单的“AwesomeProject”应用程序时,该应用程序在 Nexus6 API 23 上运行,但 error显示。我也尝试了以下方法来解
我最近(痛苦地)从react-native 0.59.10升级到0.61.2,当我通过Xcode 11构建并运行时,启动画面会加载,但控制台中会显示错误,并且应用程序不会加载。 我已经尝试过: cd
刚刚开始探索 React Native,但不幸的是,我遇到了这个错误 App(...):必须返回有效的 React 元素(或 null)。您可以 返回了未定义的数组或其他无效对象 我尝试检查并引用其他
我最近转向 react native 并创建了一个小应用程序,它工作得很好,所以,我进一步开始探索 react native。 我找到了 AppRegistry api,我没有在我现有的应用程序中使用
我真的不知道这里发生了什么。我已经设置了一个基本应用程序并使用了找到的代码共享方法 here .这一切都非常基础,所以这是代码: // index.android.js // index.ios.js
我是一名优秀的程序员,十分优秀!