Trigger Refresher

HI @Calendee , actually i’m loading a data from json using

	function TeamsCtrlAjax($scope, $http)
	{
	$http({method: 'POST', url: 'js/teams.json'}).success(function(data) {
	$scope.teams = data;
	});
	}

if i update my json data , it has to be reflected in the client side.

Any suggestions ,?

Thanks in advance