I have a on page load REST call to my backend java webservice. The results will be set onto a scope object, then I will do some form submission from my UI to the backend and the result is created in the database.
However, when i refresh the page on IE, the new database record is not retrieved, but it works on Chrome. Is there some sort of caching in IE?
It only appears when i close IE and open it again.
The codes to retrieve the database records:
$http({
method:'GET',
url:'api/queries'
}).success(function(data,status,headers,config) {
$scope.queries = angular.fromJson(data);
});