怪我咯2017-05-31 10:43:38
我这边也遇到了这个问题,没搞清楚到底是localstrorage丢失 还是没有办法获取到,尤其是在手机端测试的时候,反正可以肯定的是微信浏览器有很多不稳定表现。解决办法是,用cookie.
//解决微信不定时localstrorage失效问题
//传入cookie
var setCookie = function(c_name,value,expiredays)
{
var exdate=new Date()
exdate.setDate(exdate.getDate()+expiredays)
document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString())
}
//取出cookie
var getCookie = function(c_name)
{
if (document.cookie.length>0)
{
c_start=document.cookie.indexOf(c_name + "=")
if (c_start!=-1)
{
c_start=c_start + c_name.length+1
c_end=document.cookie.indexOf(";",c_start)
if (c_end==-1) c_end=document.cookie.length
return unescape(document.cookie.substring(c_start,c_end))
}
}
return ""
}
当然主要是存一些关键信息,比如一些常量、sessionId、loginToken之类的,像用户数据比较大的,我还是用的localstrorage,只是在需要的时候,重新请求数据,再存再取。
用的方法比较笨,希望能帮到你,也希望有大神看不过眼,给点指教~