我有tips.pdf
,我希望住在/tips
。Vanular Urls for Angular 2中的資產
當用戶手動鍵入/tips
我希望它重定向到/tips.pdf
,最好是在一個新的選項卡中。
當我更新我的路由模塊時,我得到了Error: Cannot match any routes. URL Segment: 'tips'
。
const ROUTES: Routes = [
{
path: '', redirectTo: '/home', pathMatch: 'full'
},
{
path: 'home', component: HomeComponent
},
{
path: 'fun', component: FunComponent
},
{
path: 'tips', redirectTo: '../assets/pdfs/tips.pdf', pathMatch: 'full'
}
]
這是因爲我沒有組件?很顯然,我不想爲我的資產文件夾中的固定pdf創建組件。
我認爲這種重定向需要服務器完成 –
我知道如何在服務器上做到這一點,但我想知道是否有一種在Angular中完成它的方法 – itsclarke