Nativescript角度ActivityIndicator
export class MyComponent {
public refreshing = false;
........
}
その後、私は私のバックエンドからいくつかのデータをフェッチ:
public onRefreshTap() {
console.log("onrefreshtap");
this.refreshing = true;
this.backend.getData(function (data) { //this.backend is my Service
this.refreshing = false;
})
}
proble私はthis.refreshingをtrueにすると、ActivityIndicatorが正しく表示されます。しかし、bakendリクエストが完了すると、this.refreshing = falseを設定すると、ActivityIndicatorは非表示になりません(また、ビジー状態のプロパティは更新されず、回転状態にとどまります)。
何が間違っているのですか?事前