React Native——AppRegistry

前端之家收集整理的这篇文章主要介绍了React Native——AppRegistry前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

每一个应用程序的运行都有一个入口文件或者入口函数,而在React Native 中,AppRegistry就肩负着这样的责任。

AppRegistry负责注册运行React Native应用程序的JaveScript入口,我们的应用程序的入口组件需要使用AppRegistry.

registerComponent来注册注册完应用程序组件后,Native系统(Objective-C)就会加载jsBundle文件并且触发
AppRegistry.runApplication运行应用。 AppRegistry的方法: 
1、静态方法注册配置 AppRegistry.registerConfig() 2、注册入口组件 AppRegistry.registerComponent() 3、注册函数监听 AppRegistry.registerRunnable() 4、获取AppRegistry.registerRunnable()注册的监听键 AppRegistry.getAppKeys() 5、运行App AppRegistry.runApplication()
原文链接:https://www.f2er.com/react/304669.html

猜你在找的React相关文章