Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用[ngStorage][1]AngularJS 的模块。下面是我的代码:
[ngStorage][1]
$localStorage.$reset();
它正在删除所有变量。
尝试这个:
$localStorage.$reset({ counter: 42 });
counterlocalStorage 的密钥在哪里。
counter