所以我在AuthenticationService中有以下代码。检查登录凭据后,用户将被重定向到他们的个人资料:
authentication.service.ts
:
redirectUser(username:string):void {
// Redirect user to profile on successful login
this.router.navigate(['../Profile/Feed', {username: username}]);
}
这一切都运行良好,但自从我在ProfileComponent
内引入了一些子路由后,我遇到了一些错误。
首先,这是我的AppComponent与RouteConfig:
app.ts
:
import {Component, ViewEncapsulation} from 'angular2/core';
import {RouteConfig,ROUTER_DIRECTIVES} from 'angular2/router';
import {HTTP_PROVIDERS} from 'angular2/http';
import {HomeComponent} from '../home/home';
import {AuthenticationService} from '../../services/authentication.service';
import {LoginComponent} from '../login/login';
import {ProfileComponent} from '../profile/profile';
import {ProfileService} from '../../services/profile.service';
@Component({
selector: 'app',
viewProviders: [AuthenticationService, ProfileService, HTTP_PROVIDERS],
encapsulation: ViewEncapsulation.None,
directives: [
ROUTER_DIRECTIVES
],
templateUrl: './components/app/app.html'
})
@RouteConfig([
{path: '/', component: HomeComponent, as: 'Home'},
{path: '/inloggen', component: LoginComponent, as: 'Login'},
{path: '/profile/:username/...', component: ProfileComponent, as: 'Profile'}
])
export class AppComponent {
...
}
如您所见,在ProfileComponent中定义了一些新路由。如下所示:
ProfileComponent.ts
:
import {Component, OnInit} from 'angular2/core';
import {RouteConfig,ROUTER_DIRECTIVES, RouteParams, RouterLink, RouterOutlet} from 'angular2/router';
import {ProfileService} from '../../services/profile.service';
import {PROFILE_IMAGES} from '../../constants/constants';
import {WorkoutsComponent} from '../workouts/workouts';
import {FeedComponent} from '../feed/feed';
interface IProfileVM {
username: string;
profileUser: Object;
getProfileData(username:string): void;
}
@Component({
selector: 'profile',
templateUrl: './components/profile/profile.html',
directives: [RouterOutlet, RouterLink],
providers: [ProfileService]
})
@RouteConfig([
{path: '/nieuwsfeed', component: FeedComponent, as: 'Feed'},
{path: '/workouts', component: WorkoutsComponent, as: 'Workouts'}
])
export class ProfileComponent implements OnInit, IProfileVM {
public username:string;
public profileUser:any;
constructor(private _profileService:ProfileService,
private _params:RouteParams) {
this.username = this._params.get('username');
}
ngOnInit() {
this.getProfileData(this.username);
}
getProfileData(username) {
// Do stuff..
}
}
所以这里的问题是,在我在ProfileComponent中引入一些子路由之前,一切正常。用户被重定向,用户名出现在URL中,一切正常。但是由于我添加了这些子路由,因此出现以下错误:
"Route generator for 'username' was not included in parameters passed."
如果有人可以帮助我的话会很棒!!提前谢谢!
答案 0 :(得分:2)
我认为您最好将路径定义中的嵌套配置文件组件移动到某个级别。任意值username
对配置文件组件路由没有影响。此外,子路径中实际需要该值,这是应该定义的位置。
因此,父组件路由将从配置文件路由中丢失:username
,如下所示:
@RouteConfig([
{path: '/', component: HomeComponent, as: 'Home'},
{path: '/inloggen', component: LoginComponent, as: 'Login'},
{path: '/profile/...', component: ProfileComponent, as: 'Profile'}
])
相反,您的个人资料组件会定义:username
路由参数:
@RouteConfig([
{path: '/:username/nieuwsfeed', component: FeedComponent, as: 'Feed'},
{path: '/:username/workouts', component: WorkoutsComponent, as: 'Workouts'}
])
这种方法看起来更直观,并且可以减少在嵌套路由组件之间导航的问题。