admin管理员组文章数量:1415109
I have one search page where user enters search criteria and search results will be displayed and when the user navigates to another page and es back to this page the results should be persist.
Each submodule has it's own app.js and controller and how to persist data across pages. I am not pretty sure how to go with $localStorage
I have one search page where user enters search criteria and search results will be displayed and when the user navigates to another page and es back to this page the results should be persist.
Each submodule has it's own app.js and controller and how to persist data across pages. I am not pretty sure how to go with $localStorage
Share Improve this question asked Oct 21, 2015 at 17:37 TechJumpTechJump 791 silver badge14 bronze badges 2- 4 You can use a service or factory to persist data between views. – lintmouse Commented Oct 21, 2015 at 17:39
- I am novice, can it possible to provide more elaborate answer? – TechJump Commented Oct 21, 2015 at 17:56
1 Answer
Reset to default 4As ments have said, services and factories are both capable of this. I generally handle this using localStorageService like you have suggested. First, load the local storage module in your index.html AFTER angularJS, but BEFORE your app.js.
<script src="/angular/angular.js"></script>
<script src="/lib/angular-local-storage.js"></script>
<script src="/app.js"></script>
Next, include LocalStorageModule as a dependency in your main module's declaration.
angular.module('test',['LocalStorageModule']);
Now, configure locaStorageService in the relevant module's declaration file using:
localStorageServiceProvider
.setStorageType('localStorage');
All together, your app.js file should resemble this:
angular.module('test',['LocalStorageModule']);
config.$inject = ['localStorageServiceProvider'];
function config (localStorageServiceProvider) {
localStorageServiceProvider
.setStorageType('localStorage');
}
angular
.module('test')
.config(['localStorageServiceProvider', config]);
})();
I minify my scripts before they go into production, so I use dependency injection, specifically with the $inject syntax.
An example controller that loads your query from a cookie on page load, and saves your query to a cookie when you execute a search ($scope.doSearch):
(function () {
angular.module("pstat")
.controller("homeCtrl", homeCtrl);
homeCtrl.$inject = ['$log', 'dataService', 'localStorageService', '$http'];
function homeCtrl ($log, dataService, localStorageService, $http) { {
if (localStorageService.get("query")) { //Returns null for missing 'query' cookie
//Or store the results directly if they aren't too large
//Do something with your saved query on page load, probably get data
//Example:
dataService.getData(query)
.success( function (data) {})
.error( function (err) {})
}
$scope.doSearch = function (query) {
vm.token = localStorageService.set("query", query);
//Then actually do your search
}
})
}()
As long as your root URL does not change, you can access this cookie with either your query or your results on any page through localStorageService. If you need more details on anything just let me know.
Note if you want to do this automatically on page load, you need to wrap your controller in an Immediately Invoked Function Expression. Good luck! AngularJS has a fairly high learning curve, but is one of the most powerful front end software suites available.
本文标签: javascriptHow to persist data and model in angular JSStack Overflow
版权声明:本文标题:javascript - How to persist data and model in angular JS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745205392a2647615.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论