import { Component,OnInit } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-logout',
template: ''
})
export class Logouts implements OnInit{
constructor(private path:Router){
}
ngOnInit(){
localStorage.clear();
this.path.navigate(['./login']);
}
}
嗨,我正在使用 ng2-dragula 进行拖放。它运行良好。但是当我单击注销链接时,它会重定向到注销组件。我在哪里清除本地存储。然后导航到登录页面。但是当我单击链接时它会给出错误错误错误:未捕获(承诺):错误:名为“bag1”的袋子已经存在。这是我的注销组件代码,但我没有在注销组件上使用任何 bag1。我在不同的组件上使用那个 bag1。我不知道确切的问题是什么。请帮我。