Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My single page application loads a home page and I want to display a series of ideas. Each of the ideas is displayed in an animated flash container, with animations displayed to cycle between the ideas.

Ideas are loaded using $http: $scope.flash = new FlashInterface scope:$scope,location:$location

$http.get("/competition.json")
  .success (data) ->
    $scope.flash._init data

However, to benefit from history navigation and UX I wish to update the address bar to display the correct url for each idea using $location:

$location.path "/i/#{idea.code}"
$scope.$apply()

I am calling $apply here because this event comes from outwith the AngularJS context ie Flash. I would like for the current controller/view to remain and for the view to not reload. This is very bad because reloading the view results in the whole flash object being thrown away and the preloader cycle beginning again.

I've tried listening for $routeChangeStart to do a preventDefault:

$scope.$on "$routeChangeStart", (ev,next,current) ->
  ev.preventDefault()
$scope.$on "$routeChangeSuccess", (ev,current) ->
  ev.preventDefault()

but to no avail. The whole thing would be hunky dory if I could figure out a way of overriding the view reload when I change the $location.path.

I'm still very much feeling my way around AngularJS so I'd be glad of any pointers on how to structure the app to achieve my goal!

share|improve this question

4 Answers

up vote 18 down vote accepted

instead of updating the path, just update query param with a page number.

set your route to ignore query param changes:

....
$routePrivider.when('/foo', {..., reloadOnSearch: false})
....

and in your app update $location with:

...
$location.search('page', pageNumber);
...
share|improve this answer
1  
Thanks for the tip, Igor. I'd spotted and discounted this approached previously because I'd prefer URL's like '/idea/Acas' rather than '/foo?idea=Acas'. It does, however, have the virtue of working and in the world of pragmatists working trumps perfect! – chrisbateskeegan Sep 19 '12 at 8:46
2  
Perfect, thanks a lot of this tip. Also I want to notice that if you want to detect the parameter changing you can do it with : $scope.$on("$routeUpdate", function(){ // The search param has changed }) – tknew Dec 26 '12 at 8:06

From this blog post:

by default all location changes go through the routing process, which updates the angular view.

There’s a simple way to short-circuit this, however. Angular watches for a location change (whether it’s accomplished through typing in the location bar, clicking a link or setting the location through $location.path()). When it senses this change, it $broadcasts an event, “$locationChangeSuccess,” and begins the routing process. What we do is capture the event and reset the route to what it was previously.

function MyCtrl($route, $scope) {
    var lastRoute = $route.current;
    $scope.$on('$locationChangeSuccess', function(event) {
        $route.current = lastRoute;
    });
}
share|improve this answer
Thanks for this, it sounds exactly like the solution I was looking for. I've gone through the blog article and had a good play. Unfortunately it doesn't seem to work. I tried placing the code in $routeChangeStart to see if that would make a difference but to no avail. Is there perhaps some witchcraft that I'm missing? – chrisbateskeegan Sep 16 '12 at 16:23
Another idea: try setting reloadOnSearch=false, docs.angularjs.org/api/ng.$routeProvider See also github.com/angular/angular.js/pull/1151 – Mark Rajcok Sep 17 '12 at 13:53
This is a terrible, terrible hack... but it works. And until Angular provides some way to decouple the location update event from a reload (unfortunately preventing default prevents the url change outright) it's what we're using. And yes, fwiw, reloadOnSearch=false works great if what you need to change is limited to the search params. Our issue was with the hash for bookmarkable tabs. – zapnap Apr 17 at 19:13

This writeup might be really helpful to you: http://jacobmumm.com/2012/09/11/single-page-apps-with-node-and-angular/

share|improve this answer
Thanks for the heads up on that article, it is nice and I definitely didn't know about the script ng-template trick. Unfortunately it doesn't talk about the specific problem that I have, how to change the path without angular reloading, which is a shame. – chrisbateskeegan Sep 18 '12 at 14:19

You should be loading $location via Dependency Injection and using the following:

$scope.apply(function () {
    $location.path = "yourPath";
}

Keep in mind that you should not use hashtags(#) while using $location.path. This is for compability for HTML5 mode.

share|improve this answer
Thanks for the tip. I think I'm loading $location correctly IndexController = ($scope,$http,$location,$route) -> and I've updated the apply code to be as you suggest. I'm not exactly sure of what difference that makes though, could you elaborate a little? – chrisbateskeegan Sep 16 '12 at 16:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.