我有以下代码:
if (this.num)
localStorage.setItem('num', this.num++);
else
localStorage.setItem('num_', 1);
保存我网站中的用户数,但是当我运行我的应用时出现Argument of type 'number' is not assignable to parameter of type 'string'
错误。
为什么我不能在本地存储中使用数字类型?
答案 0 :(得分:1)
find / -path /proc -prune -o -printf '%g\n' | sort -u
当您从localStorage将该数字转换为字符串时,请再次将其转换为数字。