我正在使用 nativescript-pedometer 插件构建 NativeScript Angular 应用程序。我设置了一个 Observable 来报告新的步骤。当报告新步骤时,我将号码记录到控制台,更新 Home 组件上的属性并调用ApplicationRef.tick()
.
UI 中的数字确实会发生变化,但只有在我在控制台中看到它和我在 UI 中看到它的时间之间延迟至少五秒,有时甚至长达一分钟之后。
而不是ApplicationRef.tick()
我也试过NgZone.run(callback)
and ChangeDetectorRef.detectChanges()
。他们中的任何一个都有延迟。如果我不包含其中任何一个,则 UI 永远不会更新。
我应该提到我只在 iOS 设备上测试过这个问题,不确定这个问题是否会在 Android 上发生。
这是 home.component.ts:
import { Component, OnInit, ApplicationRef } from "@angular/core";
import { Pedometer } from "nativescript-pedometer";
import { Observable } from "rxjs";
import { take } from "rxjs/operators";
@Component({
selector: "Home",
moduleId: module.id,
templateUrl: "./home.component.html"
})
export class HomeComponent implements OnInit {
numSteps: number;
pedometer: Pedometer;
constructor(private applicationRef: ApplicationRef) {}
ngOnInit(): void {
this.numSteps = 0;
this.pedometer = new Pedometer();
this.startUpdates().subscribe(response => {
console.log('New step count received from pedometer:');
console.log(response.steps);
this.numSteps = response.steps;
this.applicationRef.tick();
});
}
startUpdates(): Observable<any> {
return Observable.create(observer => {
this.pedometer.startUpdates({
onUpdate: result => observer.next(result)
});
}).pipe(take(25));
}
}
这是 home.component.html:
<StackLayout>
<Label text="Number of steps is:"></Label>
<Label [text]="numSteps"></Label>
</StackLayout>