这些是我的路线:
const routes:Routes =[
{path:'', component:WelcomeComponent},
{path:'profile', component: ProfileComponent},
{path:'addcourse', component: AddcourseComponent},
{path:'course', component: CourseComponent},
{path:'editCourse', component: EditCourseComponent},
{path:'addLectures', component: AddLectureComponent},
{path:'login', component:LoginComponent},
{path:'register', component:RegisterComponent},
// { path: 'newform', canActivate:[AuthGuard], component:NewFomComponent},
{ path: '**', redirectTo:'', pathMatch:'full'}
我的应用程序从欢迎页面开始,当我点击登录时它会带我进入课程页面,点击课程后,应用程序应该带我到课程组件,但它会重定向到欢迎页面,当我点击登录时给了我这个错误:
错误错误:未捕获(在承诺中):SecurityError:无法在“历史记录”上执行“pushState”:无法在原点为“{{3”的文档中创建URL为“http://%28login%29/”的历史状态对象}}和网址'http://localhost:4200'。 错误:无法在“历史记录”上执行“pushState”:无法在原始“http://localhost:4200/”和网址“http://%28login%29/”的文档中创建网址为“http://localhost:4200”的历史状态对象。 我已经查找了类似的问题,所有人都建议检查基本href,在我的应用程序中设置为/所以没有问题。请问有什么我做错了吗?
答案 0 :(得分:0)
尝试在路线上添加斜线:
<a mat-list-item routerLink="/profile" routerLinkActive>Profile</a>