填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

UpgradeAdapterRef

Use UpgradeAdapterRef to control a hybrid AngularJS / Angular application.

已弃用: Deprecated since v5. Use upgrade/static instead, which also supports Ahead-of-Time compilation.

      
      class UpgradeAdapterRef {
  ng1RootScope: IRootScopeService
  ng1Injector: IInjectorService
  ng2ModuleRef: NgModuleRef<any>
  ng2Injector: Injector
  ready(fn: (upgradeAdapterRef: UpgradeAdapterRef) => void)
  dispose()
}
    

属性

属性说明
ng1RootScope: IRootScopeService
ng1Injector: IInjectorService
ng2ModuleRef: NgModuleRef<any>
ng2Injector: Injector

方法

Register a callback function which is notified upon successful hybrid AngularJS / Angular application has been bootstrapped.

      
      ready(fn: (upgradeAdapterRef: UpgradeAdapterRef) => void)
    
参数
fn (upgradeAdapterRef: UpgradeAdapterRef) => void

The ready callback function is invoked inside the Angular zone, therefore it does not require a call to $apply().

Dispose of running hybrid AngularJS / Angular application.

      
      dispose()
    
参数

没有参数。