当前位置:   article > 正文

用户登出操作_window.localstorage.clear()

window.localstorage.clear()

登出操作

登录时将后端传来的用户名保存在localStorage

 localStorage.setItem('username',res.data.username)
  • 1

在前端登出


logout(){
//全清  不建议使用
//window.localStorage.clear()

//只清除username
localStorage.removeItem('username')
  this.username = '';
  this.$router.push('/login')
}, 

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

dome



<template>
<div class="home-container">
  
      <div v-if="username!=''"> 欢迎您:{{ username }}</div>
    
     
      <el-button type="info" @click="logout">退出</el-button>
     </div>
  
</template>

<script>
export default {
  data(){
    return{
      username:'',

    }
  },
  mounted() {
    let uname = localStorage.getItem('username')

    //说明未登录或已经登出

    if(uname==null){
      this.username = ''
    }else{
      this.username = uname
    }
  },
  created(){
    
  },
  methods:{

    logout(){
      //全清
      // window.localStorage.clear()
      localStorage.removeItem('username')
      this.$router.push('/login')
    }, 

    
  }
}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/925368
推荐阅读
相关标签
  

闽ICP备14008679号