当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ApplicationRef.detachView方法代码示例

本文整理汇总了TypeScript中@angular/core.ApplicationRef.detachView方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ApplicationRef.detachView方法的具体用法?TypeScript ApplicationRef.detachView怎么用?TypeScript ApplicationRef.detachView使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在@angular/core.ApplicationRef的用法示例。


在下文中一共展示了ApplicationRef.detachView方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1:

 componentRef.onDestroy(() => {
     this.applicationRef.detachView(componentRef.hostView);
 });
开发者ID:Gitjerryzhong,项目名称:bell-tm-static,代码行数:3,代码来源:dialog.ts

示例2:

 // Detaches the component from the root application node.
 public detachFromApplication<T>(componentRef:ComponentRef<T>):void {
     this._applicationRef.detachView(componentRef.hostView);
 }
开发者ID:edcarroll,项目名称:ng2-semantic-ui,代码行数:4,代码来源:component-factory.service.ts

示例3:

 this.setDisposeFn(() => {
   this._appRef.detachView(componentRef.hostView);
   componentRef.destroy();
 });
开发者ID:OkBayat,项目名称:material2,代码行数:4,代码来源:dom-portal-outlet.ts

示例4: closePopup

 closePopup(): void {
     this.appRef.detachView(this.componentRef.hostView);
     this.componentRef.destroy();
     this.componentRef = null;
 }
开发者ID:young891221,项目名称:pinpoint,代码行数:5,代码来源:dynamic-popup.service.ts

示例5:

 popupComponentRef.instance.closed.subscribe(() => {
   document.body.removeChild(popup);
   this.applicationRef.detachView(popupComponentRef.hostView);
 });
开发者ID:veldymanov,项目名称:test-ng,代码行数:4,代码来源:popup.service.ts

示例6: removeComponent

 public removeComponent() {
   this.appRef.detachView(this.childComponentRef.hostView);
   this.childComponentRef.destroy();
 }
开发者ID:ngocdiep,项目名称:nd,代码行数:4,代码来源:dom.service.ts

示例7: removeDialogComponentFromBody

 private removeDialogComponentFromBody() {
     this.appRef.detachView(this.dialogComponentRef.hostView);
     this.dialogComponentRef.destroy();
 }
开发者ID:s-dezign,项目名称:primeng,代码行数:4,代码来源:dialogservice.ts

示例8:

 public removeComponent<T>(componentRef: ComponentRef<T>) {
   this.appRef.detachView(componentRef.hostView);
   componentRef.destroy();
 }
开发者ID:bitpay,项目名称:copay,代码行数:4,代码来源:dom.ts


注:本文中的@angular/core.ApplicationRef.detachView方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。