我有一个 AngularJS 2 应用程序,我想运行一个 http 调用并在它开始和结束时设置一些变量。问题是我需要在不同的位置为同一个呼叫执行此操作。
constructor(
private http: Http
) {}
fetch() {
return this.http
.get('assets/data/events.json')
.map(response => response.json());
}
load() {
let isLoading = true; // set variable at start
return this.fetch() // call fetch()
.finally(() => isLoading = false); // set variable at end
}
reload() {
let isReloading = true; // set variable at start
return this.load() // call load()
.finally(() => isReloading = false); // set variable at end
}
this.reload(); // start call
当我调用 reload() 函数时,必须为同一个 http 调用同时设置 load() 和 reload() 的开始和结束变量。我怎样才能做到这一点?