내 로컬 저장소에 토큰이 있습니다. localstorage에서 토큰을 삭제하면 로그아웃되지 않습니다. 이를 수행하는 방법에 대한 예를 들어 주시겠습니까?
created() { if (this.vueToken) { let headers = { Authorization: "Bearer " + localStorage.getItem("vueToken"), }; axios .get("checkLogin", { headers: headers, }) .then((response) => response); }else{ this.$router.push('/login') } },
P粉5118967162024-03-31 10:49:32
보안 경로에서 조건을 설정해야 합니다. 예를 들어 로컬 저장소의 토큰이 비어 있으면 로컬 저장소로 푸시합니다. 다음은 샘플 코드입니다.
으아아아},`