how to call a save function every two mins in anular js. please Help me.
$scope.save = function () { $http({ url : \'/api/products\',
You can try the following way also.
Declaring the interval:
var interval = null;
To cancel interval:
if (interval != null) $interval.cancel(interval);
Call the function as per as interval:
$interval(function() { $scope.function(); }, 120000);