我正在学习 AngularJS。假设我有/view1使用My1Ctrl和/view2使用My2Ctrl;可以使用选项卡导航到每个视图都有自己简单但不同的形式。
当用户离开然后返回view1时,我如何确保以view1的形式输入的值不会被重置?
我的意思是,对view1的第二次访问如何保持与我离开时完全相同的模型状态?
我正在学习 AngularJS。假设我有/view1使用My1Ctrl和/view2使用My2Ctrl;可以使用选项卡导航到每个视图都有自己简单但不同的形式。
当用户离开然后返回view1时,我如何确保以view1的形式输入的值不会被重置?
我的意思是,对view1的第二次访问如何保持与我离开时完全相同的模型状态?
我花了一些时间来弄清楚这样做的最佳方法是什么。我还想保持状态,当用户离开页面然后按下后退按钮时,回到旧页面;而不仅仅是将我所有的数据放入rootscope。
最终的结果是每个控制器都有一个服务。在控制器中,您只拥有您不关心的函数和变量,如果它们被清除的话。
控制器的服务是通过依赖注入来注入的。由于服务是单例的,它们的数据不会像控制器中的数据那样被破坏。
在服务中,我有一个模型。该模型只有数据-没有功能-。这样它就可以从 JSON 来回转换以保持它。我使用 html5 localstorage 进行持久化。
最后我使用window.onbeforeunload
and$rootScope.$broadcast('saveState');
让所有服务知道他们应该保存他们的状态,并$rootScope.$broadcast('restoreState')
让他们知道恢复他们的状态(用于当用户离开页面并按下后退按钮分别返回页面时)。
我的userController的名为userService的示例服务:
app.factory('userService', ['$rootScope', function ($rootScope) {
var service = {
model: {
name: '',
email: ''
},
SaveState: function () {
sessionStorage.userService = angular.toJson(service.model);
},
RestoreState: function () {
service.model = angular.fromJson(sessionStorage.userService);
}
}
$rootScope.$on("savestate", service.SaveState);
$rootScope.$on("restorestate", service.RestoreState);
return service;
}]);
用户控制器示例
function userCtrl($scope, userService) {
$scope.user = userService;
}
然后视图使用这样的绑定
<h1>{{user.model.name}}</h1>
在app 模块中,在 run 函数中,我处理saveState和restoreState的广播
$rootScope.$on("$routeChangeStart", function (event, next, current) {
if (sessionStorage.restorestate == "true") {
$rootScope.$broadcast('restorestate'); //let everything know we need to restore state
sessionStorage.restorestate = false;
}
});
//let everthing know that we need to save state now.
window.onbeforeunload = function (event) {
$rootScope.$broadcast('savestate');
};
正如我所提到的,这需要一段时间才能达到这一点。这是一种非常干净的方式,但是做一些我怀疑在 Angular 中开发时很常见的问题是相当多的工程。
我希望看到更简单但更简洁的方式来处理跨控制器保持状态,包括用户离开和返回页面的时间。
答案有点晚了,但刚刚更新了一些最佳实践
var myApp = angular.module('myApp',[]);
myApp.factory('UserService', function() {
var userService = {};
userService.name = "HI Atul";
userService.ChangeName = function (value) {
userService.name = value;
};
return userService;
});
function MyCtrl($scope, UserService) {
$scope.name = UserService.name;
$scope.updatedname="";
$scope.changeName=function(data){
$scope.updateServiceName(data);
}
$scope.updateServiceName = function(name){
UserService.ChangeName(name);
$scope.name = UserService.name;
}
}
$rootScope 是一个大的全局变量,它适用于一次性的东西或小型应用程序。如果您想封装您的模型和/或行为(并可能在其他地方重用它),请使用服务。除了提到的 OP 的 google 组帖子之外,另请参阅https://groups.google.com/d/topic/angular/eegk_lB6kVs/discussion。
Angular 并没有真正提供你正在寻找的开箱即用的东西。我会做的是使用以下附加组件来完成您所追求的
这两个将为您提供基于状态的路由和粘性状态,您可以在状态之间进行选项卡,并且所有信息都将保存为可以说“保持活动状态”的范围。
检查两者的文档,因为它非常简单,ui router extras 也很好地演示了粘性状态是如何工作的。
我遇到了同样的问题,这就是我所做的:我有一个 SPA,在同一页面中有多个视图(没有 ajax),所以这是模块的代码:
var app = angular.module('otisApp', ['chieffancypants.loadingBar', 'ngRoute']);
app.config(['$routeProvider', function($routeProvider){
$routeProvider.when('/:page', {
templateUrl: function(page){return page.page + '.html';},
controller:'otisCtrl'
})
.otherwise({redirectTo:'/otis'});
}]);
我对所有视图只有一个控制器,但是,问题与问题相同,控制器总是刷新数据,为了避免这种行为,我做了上面人们建议的操作,为此目的创建了一个服务,然后通过它控制器如下:
app.factory('otisService', function($http){
var service = {
answers:[],
...
}
return service;
});
app.controller('otisCtrl', ['$scope', '$window', 'otisService', '$routeParams',
function($scope, $window, otisService, $routeParams){
$scope.message = "Hello from page: " + $routeParams.page;
$scope.update = function(answer){
otisService.answers.push(answers);
};
...
}]);
现在我可以从我的任何视图中调用更新函数,传递值并更新我的模型,我不需要使用 html5 api 来获取持久性数据(在我的情况下,也许在其他情况下需要使用 html5 api 像 localstorage 和其他东西)。
服务的替代方案是使用价值存储。
在我的应用程序的基础上,我添加了这个
var agentApp = angular.module('rbAgent', ['ui.router', 'rbApp.tryGoal', 'rbApp.tryGoal.service', 'ui.bootstrap']);
agentApp.value('agentMemory',
{
contextId: '',
sessionId: ''
}
);
...
然后在我的控制器中,我只引用值存储。如果用户关闭浏览器,我认为它不存在。
angular.module('rbAgent')
.controller('AgentGoalListController', ['agentMemory', '$scope', '$rootScope', 'config', '$state', function(agentMemory, $scope, $rootScope, config, $state){
$scope.config = config;
$scope.contextId = agentMemory.contextId;
...
适用于多个范围和这些范围内的多个变量的解决方案
该服务基于 Anton 的回答,但更具可扩展性,可以跨多个范围工作,并允许在同一范围内选择多个范围变量。它使用路由路径来索引每个范围,然后范围变量名称来索引更深一层。
使用以下代码创建服务:
angular.module('restoreScope', []).factory('restoreScope', ['$rootScope', '$route', function ($rootScope, $route) {
var getOrRegisterScopeVariable = function (scope, name, defaultValue, storedScope) {
if (storedScope[name] == null) {
storedScope[name] = defaultValue;
}
scope[name] = storedScope[name];
}
var service = {
GetOrRegisterScopeVariables: function (names, defaultValues) {
var scope = $route.current.locals.$scope;
var storedBaseScope = angular.fromJson(sessionStorage.restoreScope);
if (storedBaseScope == null) {
storedBaseScope = {};
}
// stored scope is indexed by route name
var storedScope = storedBaseScope[$route.current.$$route.originalPath];
if (storedScope == null) {
storedScope = {};
}
if (typeof names === "string") {
getOrRegisterScopeVariable(scope, names, defaultValues, storedScope);
} else if (Array.isArray(names)) {
angular.forEach(names, function (name, i) {
getOrRegisterScopeVariable(scope, name, defaultValues[i], storedScope);
});
} else {
console.error("First argument to GetOrRegisterScopeVariables is not a string or array");
}
// save stored scope back off
storedBaseScope[$route.current.$$route.originalPath] = storedScope;
sessionStorage.restoreScope = angular.toJson(storedBaseScope);
},
SaveState: function () {
// get current scope
var scope = $route.current.locals.$scope;
var storedBaseScope = angular.fromJson(sessionStorage.restoreScope);
// save off scope based on registered indexes
angular.forEach(storedBaseScope[$route.current.$$route.originalPath], function (item, i) {
storedBaseScope[$route.current.$$route.originalPath][i] = scope[i];
});
sessionStorage.restoreScope = angular.toJson(storedBaseScope);
}
}
$rootScope.$on("savestate", service.SaveState);
return service;
}]);
将此代码添加到应用模块中的运行函数中:
$rootScope.$on('$locationChangeStart', function (event, next, current) {
$rootScope.$broadcast('savestate');
});
window.onbeforeunload = function (event) {
$rootScope.$broadcast('savestate');
};
将 restoreScope 服务注入您的控制器(如下示例):
function My1Ctrl($scope, restoreScope) {
restoreScope.GetOrRegisterScopeVariables([
// scope variable name(s)
'user',
'anotherUser'
],[
// default value(s)
{ name: 'user name', email: 'user@website.com' },
{ name: 'another user name', email: 'anotherUser@website.com' }
]);
}
上面的示例会将 $scope.user 初始化为存储的值,否则将默认为提供的值并将其保存。如果页面关闭、刷新或路由发生变化,所有注册的作用域变量的当前值将被保存,并在下次访问该路由/页面时恢复。
您可以使用$locationChangeStart
事件将先前的值存储在服务中$rootScope
或服务中。当你回来时,只需初始化所有以前存储的值。这是一个使用$rootScope
.
var app = angular.module("myApp", ["ngRoute"]);
app.controller("tab1Ctrl", function($scope, $rootScope) {
if ($rootScope.savedScopes) {
for (key in $rootScope.savedScopes) {
$scope[key] = $rootScope.savedScopes[key];
}
}
$scope.$on('$locationChangeStart', function(event, next, current) {
$rootScope.savedScopes = {
name: $scope.name,
age: $scope.age
};
});
});
app.controller("tab2Ctrl", function($scope) {
$scope.language = "English";
});
app.config(function($routeProvider) {
$routeProvider
.when("/", {
template: "<h2>Tab1 content</h2>Name: <input ng-model='name'/><br/><br/>Age: <input type='number' ng-model='age' /><h4 style='color: red'>Fill the details and click on Tab2</h4>",
controller: "tab1Ctrl"
})
.when("/tab2", {
template: "<h2>Tab2 content</h2> My language: {{language}}<h4 style='color: red'>Now go back to Tab1</h4>",
controller: "tab2Ctrl"
});
});
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-route.js"></script>
<body ng-app="myApp">
<a href="#/!">Tab1</a>
<a href="#!tab2">Tab2</a>
<div ng-view></div>
</body>
</html>