/ / droga kątowa nie działa w aplikacji czatu - kątowa, router

droga kątowa nie działa w aplikacji czatu - kątowa, router

Mam problemy z nawigacją w mojej aplikacji kątowej. Po zalogowaniu się ekran czatu nie jest wyświetlany, ale pasek nawigacyjny już się zalogował.

To jest route.ts

import ...

export const appRoutes: Routes = [
{ path: "signup", component: SignupFormComponent},
{ path: "login", component: LoginFormComponent},
{ path: "chat", component: ChatroomComponent},
{ path: "", redirectTo: "/login", pathMatch: "full"},
];

To jest app.module.ts

imports: [
RouterModule.forRoot(appRoutes),
],

I login-form.ts

import { Component, OnInit } from "@angular/core";
import { AuthService } from "../services/auth.service";
import { Router } from "@angular/router";

@Component({
...
})
export class LoginFormComponent{
email: string;
password: string;
errorMsg: string;

constructor(private authService: AuthService, private router: Router) { }

login() {
this.authService.login(this.email, this.password)
.then(resolve => this.router.navigate(["chat"]))
.catch(error => this.errorMsg = error.message);
}
}

Gdy loguję się do aplikacji, nie przechodzę do / chat. Przed Po zalogowaniu

Wersja informacyjna

"dependencies": {
"@angular/animations": "^5.2.0",
"@angular/common": "^5.2.0",
"@angular/compiler": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"@angular/http": "^5.2.0",
"@angular/platform-browser": "^5.2.0",
"@angular/platform-browser-dynamic": "^5.2.0",
"@angular/router": "^5.2.0",
"angularfire2": "^5.0.0-rc.4",
"core-js": "^2.4.1",
"firebase": "^4.9.0",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular/cli": "1.6.5",
"@angular/compiler-cli": "^5.2.0",
"@angular/language-service": "^5.2.0",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "^4.0.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.2",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "~2.5.3"
}

Odpowiedzi:

0 dla odpowiedzi № 1

Jeśli chcesz nawigować do /chatmusisz przekazać to z / do routera:

.then(resolve => this.router.navigate(["/chat"]))

Jeśli nie masz przed / router dołącza chat do aktualnej trasy.