I am a rookie in angular js. In my application, I want to save an object into $rootScope and do a post request which does not contain the object in rootScope.
In new page which has just opened, I want to use that object from rootScope but as I have understood, after a full redirection , rootscope loses its state or I am doing something wrong:)
In general, without a full refresh, is there a way to store variables into rootscope or should I have to pass it with each request from one to another?
THX
PS: I do not using ng-view and looking for something without ng-view...