问题描述
我正在制作一个聊天应用程序,其中登录后的服务类是将本地变量设置为true。但是,当我尝试从另一个组件访问该变量时,它给我的初始值为false。那怎么办呢?
auth.service.ts
@Injectable({
providedIn: 'root'
})
export class AuthService {
url:string = 'http://localhost:3000/api/'
public isAuth: boolean = false
login(user:User){
const api = this.url + 'signin'
return this.http.post<any>(api,user,httpOptions).subscribe(response => {
if(response.token){
localStorage.setItem('token',response.token)
isAuth = true
this.router.navigate(['chat'])
}
})
}
}
chatroom.component.ts
import {AuthService} from '../services/auth.service'
@Component({
selector: 'app-chatroom',templateUrl: './chatroom.component.html',styleUrls: ['./chatroom.component.css']
})
export class ChatroomComponent implements OnInit,AfterViewInit{
constructor(private auth:AuthService) { }
ngOnInit(): void {
console.log(this.auth.isAuth) //is showing me false despite logging in and setting it to true
}
}
解决方法
将值设置为本地存储更改后
isAuth = true
到
this.isAuth = true