美文网首页
ios低版本localStorage失效问题解决,可以用cook

ios低版本localStorage失效问题解决,可以用cook

作者: 花影_62b4 | 来源:发表于2021-09-07 11:56 被阅读0次

    可以使用cookie进行存取

    export function setCookie(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
    export function getCookie(c_name)
    {
    if (document.cookie.length>0)
      {
      let c_start=document.cookie.indexOf(c_name + "=")
      if (c_start!=-1)
        { 
        c_start=c_start + c_name.length+1 
        let 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 ""
    }
    
    
    mounted(){
        let clientId=localStorage.getItem("clientId")
        let clientId2=getCookie("clientId")
        if(clientId || clientId2){
          if (this.from == "my") {
              this.$router.push("/my");
            } else {
              this.$router.push("/meetList");
            }
        }
      },
    

    相关文章

      网友评论

          本文标题:ios低版本localStorage失效问题解决,可以用cook

          本文链接:https://www.haomeiwen.com/subject/funuwltx.html