在 angularjs 中,我有一个注销按钮。使用 window.sessionStorage.clear() 清除会话存储。但我想使用服务清除会话存储。我使用的服务是 LocalCacheService 。如何使用此服务清除 sessionStorage
'controller': ["$scope","LocalCacheService", function ($scope,LocalCacheService) {
console.log("Logout Controller called....");
$scope.Logout = {
}
}]
在该注销中,我应该添加什么来使用服务清除会话存储