按顺序调用typescript函数:Angular2

时间:2017-08-23 08:00:30

标签: angular typescript

我在Typescript中编写了以下函数: -

AdjustSpinAndGetAmbiguityAnalysisResult() {
        this.cssRefreshSpin = "glyphicon glyphicon-refresh glyphicon-spin";
        this.GetAmbiguityAnalysisResult();
        this.cssRefreshSpin = "glyphicon glyphicon-refresh";
    }

此函数正在调用: - GetAmbiguityAnalysisResult();

但我想分配this.cssRefreshSpin = "glyphicon glyphicon-refresh";

当函数GetAmbiguityAnalysisResult()完全执行时。

可以为此做些什么?

1 个答案:

答案 0 :(得分:1)

您可以使用主题。

它是rxjs的一部分,可以按照以下方式使用:

import {Subject} from "rxjs";

let subject = new Subject();
subject.subscribe(res => console.log(res));
subject.next('hello');