Hi Michel,

Did you consider sessionStorage? I know that will only work on the same 
session, but that might just be what you need. If you need this to work 
across browsers/systems you have 3 options. 

   1. store the needed data in the url. (uggly, but works, and you can send 
   the url to someone else, that should get the same result as you.)
   2. store this data on your server, using a unique token, that can be 
   retrieved. (put the token in the url, and $http.get() the rest of the 
   needed data.
   3. store it in the user session. the url does not reflect the state of 
   your application anymore.

Regards
Sander

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to