如何使用React Native添加vDOM元素

时间:2015-09-16 03:34:17

标签: react-native

我正在尝试使用react-native动态添加一些元素。我跟着(稀疏的)文档并提出了这个问题:

std::find()

这会引发错误:除了顶级根之外,您无法渲染任何内容。我在#reactnative中询问了这个问题,他们说要确保root只返回一个节点,但是我仍然无法解决错误。

1 个答案:

答案 0 :(得分:1)

AppRegistry是运行所有React Native应用程序的JS入口点。应用程序根组件应该使用AppRegistry.registerComponent注册自己,然后本机系统可以加载应用程序包。

所以,你应该这样渲染,其中Root是你应用中的顶级组件.-

AppRegistry.registerComponent('Root', () => Root);

更多信息 - https://facebook.github.io/react-native/docs/appregistry.html#content