My routeProvider for route has reloadOnSearch set to false :
$routeProvider .when( \"/film/list\",
Use
$scope.$watch(function(){ return $location.search() }, function(params){ console.log(params); });
instead.