1
に向けたい存在する場合、私は、私は、最新のangular2とtypescriptですを使用していますホームページルートdoesntのは、私は、ユーザーがルートdoesntの場合angular2でホームページ
に向け、ユーザが欲しい存在します。
このコードをアプリルートファイルにどこかに追加しますか?
これは私のroutesファイルである: - これは、あなたの中で行われ
import { Route } from '@angular/router';
import { HomeComponent } from './index';
export const HomeRoutes: Route[] = [
{
path: '',
component: HomeComponent
},
{
path: 'home',
component: HomeComponent
},
{
path: 'homepage',
component: HomeComponent
},
{
path: '**',
component: PageNotFoundComponent
}
];
は、私は私の質問に私のルートファイルを追加しました、どのように私はそれを更新しますか? – AngularM
また、PageNotFoundComponentは何ですか?それに何が好きですか? – AngularM
@AngularM 'PageNotFoundComponent'は、あなたのアプリケーションに属する任意のコンポーネントです。もし存在しないパスをそこにリダイレクトさせたいのであれば、それを 'HomeComponent'に置き換えたいでしょう。 – BeetleJuice