我在Typescript中编写了以下函数: -
AdjustSpinAndGetAmbiguityAnalysisResult() {
this.cssRefreshSpin = "glyphicon glyphicon-refresh glyphicon-spin";
this.GetAmbiguityAnalysisResult();
this.cssRefreshSpin = "glyphicon glyphicon-refresh";
}
此函数正在调用: - GetAmbiguityAnalysisResult();
但我想分配this.cssRefreshSpin = "glyphicon glyphicon-refresh";
当函数GetAmbiguityAnalysisResult()
完全执行时。
可以为此做些什么?
答案 0 :(得分:1)
您可以使用主题。
它是rxjs的一部分,可以按照以下方式使用:
import {Subject} from "rxjs";
let subject = new Subject();
subject.subscribe(res => console.log(res));
subject.next('hello');