0

我正在使用 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>
4

1 回答 1

1

onUpdate从后台线程调用,Angular 在 UI 线程上。试试这个,

startUpdates(): Observable<any> {
 return Observable.create(observer => {
  this.pedometer.startUpdates({
    onUpdate: result => Promise.resolve().then(() => observer.next(result))
  });
 }).pipe(take(25));
}

Promise.resolve()强制块进入 UI 线程。

于 2018-12-09T19:36:08.873 回答