I'm working with my Angular application in Chrome and IE. Although in Chrome it runs very fast but in IE my Angular app is very slow.
I just debug my application in IE and Chrome and see IE send many requests but Chrome only sends 1.
In Chrome:
In IE:
This is code I implement this function:
vm.save = function () {
// Logic here
ConfigFactory.api.update({}, ConfigFactory.data[0], function (response) {
vm.showSuccess = true;
vm.oldConfigs = angular.copy(vm.configs);
$timeout(function () {
vm.showSuccess = false;
}, 1000)
$window.location.href = '#/Home';
});
}
UPDATED: After I do not clear when navigation in IE:
IE still send many requests.
This is the error log.
This log only appear in IE, Chrome have nothing