我有一个Angular应用程序,我有时想要:
我已经查看了ngRoute,stateProvider和html历史记录并没有找到一个很好的方法来做到这一点。它看起来应该是相当普遍的东西,所以我想我还不知道该怎么做。
答案 0 :(得分:0)
为了在我们当前的项目中处理这个问题,我们声明了一个指令,该指令监视模型并将此值绑定到数据服务中的变量。此外,在render上,该指令检查是否已在数据服务中设置了适当的值。如果是,则将模型设置为此值。
根据评论中的要求,我的StorageService
:
'use strict';
/**
* storage wrapper for session- or local-storage operations
*/
app.factory('StorageService', function(
$rootScope,
$http,
$location) {
/**
* get an item
*
* @param item - string - the item identifier
* @return - mixed -
*/
var get = function(item) {
return JSON.parse(sessionStorage.getItem(item) ||localStorage.getItem(item));
};
/**
* set an item
*
* @param item - string - the item identifier
* @param value - mixed - the value to set
* @param usePersistentStorage - boolean - the flag for session- or local-storage
* @return void
*/
var set = function(item, value, usePersistentStorage) {
var obj = {
value: value,
ts: new Date().getTime()
};
window[usePersistentStorage ? 'localStorage' : 'sessionStorage'][value === null ? 'removeItem' : 'setItem'](item, JSON.stringify(obj));
};
/**
* remove an item
*
* @param item - string - the item identifier
* @return void
*/
var remove = function(item) {
set(item, null, true);
set(item, null);
};
/**
* clear the whole session- and local-storage
*
* @return void
*/
var clear = function() {
sessionStorage.clear();
localStorage.clear();
};
/**
* check if item has expired
*
* @return boolean
*/
var checkExpiration = function(str, minutes) {
var now = new Date(),
nowts = now.getTime(),
item = get(str);
if(item && typeof item.ts != 'undefined' && (new Date(nowts) - new Date(item.ts) < minutes * 60 * 1000)) {
return true;
} else {
remove(str);
return false;
}
};
return {
get: get,
set: set,
remove: remove,
clear: clear,
checkExpiration: checkExpiration
};
}
);
答案 1 :(得分:0)
我过去通过提供将其保存在对象中的服务来保存视图状态。
对我想要维护的字段的任何引用(如表的排序列或特定字段的值)都将保存在服务的视图状态对象中,而不是保存在控制器/范围中。 / p>
控制器会检查来源&#39;或者&#39;键入&#39;通过查找特定的url参数或状态进行初始化时的页面传输(例如#/ search?type = new)。如果它被认为是新搜索,它将重置值。否则它将显示并使用以前使用的值。
重新加载应用程序会消除服务中的数据,从而提供全新的表单。
我上面描述的方法很简单,因为angular会为您节省成本。服务是单身,因此通过直接绑定到服务的字段,它将自动存在路由更改。
在您看来:
<input ng-model="criteria.firstName">
在控制器初始化中:
$scope.criteria = ViewStateService.criteria;
如果您更喜欢仅在特定点保存视图状态,则可以在页面更改/路由更改事件上设置事件处理程序,并在该点执行数据副本。
$scope.$on('$locationChangeStart', function(next, current) {
//code to copy/save fields you want to the Service.
});
答案 2 :(得分:0)
根据您所描述的内容,我看到了一些可以做到这一点的方法。
LocalStorage在大多数浏览器中都是supported,即便如此,polyfills也是如此。这意味着您使用名称/值对进行存储。
这是一个简单的例子:
var searchParameters = {
filters: [
'recent'
],
searchString: 'bacon'
}
// Store the value(s)
localStorage.setItem('searchParameters', JSON.stringify(searchParameters));
// Retrieve the value(s)
searchParameters = JSON.parse(localStorage.getItem('searchParameters'));
// Delete the value(s)
localStorage.removeItem('searchParameters');
根据您的流程,您可以使用浏览器历史记录堆栈。因此,如果有人搜索bacon
,那么您可以将其发送到附加了?query=bacon
的页面。这样您就可以轻松维护历史记录并轻松使用后退按钮。在一天结束时,这一切都归结为您的应用程序如何设置什么是最佳选择。还有其他方法可以根据需要实现。例如,如果需要跨设备进行同步,则需要实现服务器端组件来存储值并检索它们。
答案 3 :(得分:0)
有几种方法,两种似乎非常可靠。我最终为我的应用程序选择了第一种方法,因为我的搜索参数需要传播到其他控制器。
Angular.js提供$cookies,允许在浏览器上获取/设置参数。我将其用作搜索参数的 true 来源。
例如:
<强> search.service.js 强>
angular
.module('app')
.service('SearchService', SearchService);
SearchService.$inject = [
'$cookies'
];
function SearchService(
$cookies
) {
var searchCookieKey = 'searchHistoryCookieKey';
var searchCookieMaxSize = 10;
return {
search: search,
getSearchHistory: getSearchHistory
};
function search(arg1, arg2) {
storeSearchHistory({arg1: arg1, arg2: arg2});
// do your search here
// also, you should cache your search so
// when you use the 'most recent' params
// then it won't create another network request
}
// Store search params in cookies
function storeSearchHistory(params) {
var history = getSearchHistory();
history.unshift(params); // first one is most recent
if(history.length > searchCookieMaxSize) {
history.pop();
}
$cookies.putObject(searchCookieKey, history);
}
// Get recent history from cookies
function getSearchHistory() {
return $cookies.getObject(searchCookieKey) || [];
}
}
<强> app.states.js 强>
.state('search', {
url: "/search",
templateUrl: "/dashboard/search/templates/index.html",
controller: 'SearchController',
resolve: {
searchResults: ['SearchService', '$stateParams', function(SearchService, $stateParams) {
if(!$stateParams.arg1 || !$stateParams.arg2) {
var history = SearchService.getSearchHistory();
var mostRecent = history.length ? history[0] : null;
if(mostRecent) {
return SearchService.search(mostRecent.arg1, mostRecent.arg2);
}
}
return SearchService.search($stateParams.arg1, $stateParams.arg2);
}]
}
})
如果您没有缓存这些搜索网络电话,那么您的应用需要等待请求返回,从而减慢您的应用。
您可以创建一个包含$stateParams
的父控制器,您的子控制器将继承参数。返回/转发或在子状态之间访问时不会覆盖参数。但是,当您移动具有特定参数的状态时,它们会被覆盖。因此,在州之间移动时,您只需要明确指定那些父$stateParams
。