【发布时间】:2016-05-19 08:35:52
【问题描述】:
在 angularjs 中,我有一个注销按钮。使用 window.sessionStorage.clear() 清除会话存储。但我想使用服务清除会话存储。我使用的服务是 LocalCacheService 。如何使用此服务清除 sessionStorage
'controller': ["$scope","LocalCacheService", function ($scope,LocalCacheService) {
console.log("Logout Controller called....");
$scope.Logout = {
}
}]
在该注销中,我应该添加什么来使用服务清除会话存储
【问题讨论】:
-
您是否按照任何示例代码使用服务注销?
-
不,我想要一些示例来使用服务清除会话存储
标签: angularjs sessionstorage clear-cache