codecamp

应用程序注册表

AppRegistry 是运行所有 React Native 应用程序的 JS 入口点。应用程序跟组件需要通过AppRegistry.registerComponent 来注册它们自身,然后本地系统就可以加载应用程序的包,再然后当AppRegistry.runApplication准备就绪后就可以真正的运行该应用程序了。

AppRegistry  require 序列里是 required,确保在其他模块被需求之前 JS 执行环境已经被 required

方法

static **registerConfig**(config: Array<AppConfig>) 

static **registerComponent**(appKey: string, getComponentFunc: Function) 

static **registerRunnable**(appKey: string, func: Function) 

static **runApplication**(appKey: string, appParameters: any)


iOS 警告
iOS 应用程序状态
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }