TypeError: Failed to execute ‘setItem‘ on ‘Storage‘: 2 arguments requir
Posted 唐微港
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: Failed to execute ‘setItem‘ on ‘Storage‘: 2 arguments requir相关的知识,希望对你有一定的参考价值。
错误描述
在学习vue的时候要用到前台的缓存sessionStorage,于是使用了如下方式存储
window.sessionStorage.setItem(activePath)
但是却在控制台出现了如下的报错信息
vue.runtime.esm.js?2b0e:1888 TypeError: Failed to execute 'setItem' on 'Storage': 2 arguments required, but only 1 present.
解决方案
在百度上将错误信息搜索了一下,结果出现了很多说是storage的存储有限,不能放入过大的数据。结果按照某度上进行操作还是没解决,最后我翻译了一下这句话,明显是自己少写了点参数,上面错误信息指出Storage要求存在的key-value模式而不是单纯的放一个值就ok了。所以将上面的保存方式改成了如下便解决了问题,自勉:细心点很多问题都不是问题。
window.sessionStorage.setItem('activePath',activePath)
补充:
不建议一些人做伸手党,总是将别人的东西拷贝过来放到公共网络上。其实你不妨都有发现,遇到问题百度时,大片的一模一样的解决方案,结果很浪费别人的时间,这样真的很讨厌的。最好是自己解决问题后放到网上帮助更多的人。优秀的程序员不仅是代码写的号,素质应该也不错才是
以上是关于TypeError: Failed to execute ‘setItem‘ on ‘Storage‘: 2 arguments requir的主要内容,如果未能解决你的问题,请参考以下文章
TypeError: Failed to execute ‘setItem‘ on ‘Storage‘: 2 arguments requir
在使用rsync远端rsync: Failed to exec ssh: No such错误
distcc (dcc_execvp) ERROR: failed to exec XX: Permission denied
net::ERR_EMPTY_RESPONSE && Uncaught (in promise) TypeError: Failed to fetch
解决Uncaught (in promise) TypeError: Failed to execute ‘Cache‘ on addAll
解决Uncaught (in promise) TypeError: Failed to execute ‘Cache‘ on addAll