我是angular.js的新手。我正在尝试使用ngStorage
为我的应用中的特定计数器支持sessionStorage以下方法返回注释的特定计数器。我想使用sessionStorage存储和读取此计数器。
var commentCounter = function () {
var commentCounter = {
incrementCount:function () {
var currentCount = myCounter.readPageViewCount();
currentCount++;
myCounter.recordPageViewCount(currentCount);
},
recordPageViewCount:function (pageViewCount) {
var lastRecorded = new Date().toUTCString();
// Need to record the counter
},
readPageViewCount:function () {
var sessionCounter = 0;
// Read counter from session
return sessionCounter;
}
}
return commentCounter;
}
任何人都可以帮助我在正确的方向上处理此会话存储吗?