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


TypeScript ChangeDetectorRef.markForCheck方法代码示例

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


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

示例1: ngOnInit

 ngOnInit() {
     this.search = this.memberManager.search();
     this.changeDetector.markForCheck();
 }
开发者ID:ovangle,项目名称:TNC-admin-client,代码行数:4,代码来源:search_page.component.ts

示例2:

this.ngZone.run(() => this.changeDetectorRef.markForCheck())
开发者ID:iwe7,项目名称:tabler-angular,代码行数:1,代码来源:time-ago.pipe.ts

示例3:

this._intlSubscription = _intl.changes.subscribe(() => changeDetectorRef.markForCheck());
开发者ID:OkBayat,项目名称:material2,代码行数:1,代码来源:step-header.ts

示例4:

 (async () => {
   this.loginStatus = await this.service.getLoginStatus();
   this.cd.markForCheck();
   this.service.login();
 })();
开发者ID:ovrmrw,项目名称:ionic2-testing-sample,代码行数:5,代码来源:signup.ts

示例5:

 .subscribe(() => this.cd.markForCheck());
开发者ID:ovrmrw,项目名称:shuttle-store-sample,代码行数:1,代码来源:page4.component.ts

示例6:

 this.state.currentTime$.subscribe((newTime) => {
   this.currentSecond = newTime;
   this.ref.markForCheck();
 });
开发者ID:dimkk,项目名称:cccfix,代码行数:4,代码来源:controlsContainer.component.ts

示例7: setInterval

 setInterval(() => {
   // the following is required, otherwise the view will not be updated
   this.ref.markForCheck();
 }, 5000);
开发者ID:okgreece,项目名称:indigo,代码行数:4,代码来源:timeseries.ts

示例8:

 .do(note => {
   this.note = note;
   this.oldNote = lodash.cloneDeep(this.note);
   this.cd.markForCheck();
 })
开发者ID:ovrmrw,项目名称:jspm-angular2-sample,代码行数:5,代码来源:note.component.ts

示例9:

 .subscribe(config => {
   this.config = Object.assign({}, config);
   this.changeDetectorRef.markForCheck();
 });
开发者ID:harunurhan,项目名称:record-editor,代码行数:4,代码来源:holdingpen-editor.component.ts


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