angular2页面数据不刷新的解决办法
2018-02-06 本文已影响0人
lavender_zq
angular2页面数据出现不刷新的解决办法:
在ts里引进ChangeDetectorRef模块:
import ChangeDetectorRef}from '@angular/core';
在构造器里声明:
constructor(private changeDetectorRef:ChangeDetectorRef) {
}
在需要赋值的地方添加以下两句:
this.changeDetectorRef.markForCheck();
this.changeDetectorRef.detectChanges();