angular2出现值变化没有立即更新到ui上
2017-10-22 本文已影响0人
SevenLonely
解决方法
import { Component, OnInit,NgZone } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {
querys = 2323;
constructor(private ngzone:NgZone) { }
ngOnInit() {
}
set() {
this.ngzone.run(() => {
this.querys = 5;
})
}
}