I've found similar threads regarding IE9 but not IE11.
I have a SPA built with Angular using TypeScript.
However, my async calls to the WebAPI is not refreshing the data on the front-end. Even when I hit Ctrl+F5 (force refresh), only the data that was active at the first time I entered the site is shown.
What can be the problem? I've removed all console.-references in my TypeScript files.
Example of call:
private getPerson(id: number): void {
this.dataContainer.GetPerson(id).then((data) => this.personDataFetched(data), (errorInfo) => this.serverFail(errorInfo));
}
private personDataFetched(data: Services.Person): void {
this.$scope.currentPerson = data; // This data doesn't update even if I force refresh
}