遇到此错误,
“ ViewDestroyedError:尝试使用被破坏的视图:detectChanges”
当我尝试从列表组件路由到员工详细信息组件时,我调用了function和pass id,它被完美路由,但是在控制台中却给了我这个错误
两个组件都在同一模块,员工模块中
EmployeeModule(EmployeeListComponent => EmployeeProfileComponent)
代码
editEmployee(emp){
console.log('employee:=>',emp);
this.route.navigate(['employee/profile'],{queryParams:{empid:emp.id}})
}