添加角度为4的网址的应用

时间:2017-06-30 23:09:24

标签: angular angular2-routing

我有一个用angular 4开发的应用程序,带有简单的url结构,如localhost:4200 /聊天聊天页面,现在我想在url中添加'app',如localhost:4200 / app / chat。

我想更改某些网页的网址,但不是整个应用更改网址。

我尝试使用应用程序路由文件和菜单项ts文件,但它不起作用,它会停止工作。

有没有办法做到这一点

1 个答案:

答案 0 :(得分:1)

在你的app.module.ts中确保你的导入列出了RouterModule.forRoot(routes),然后是routes.ts

export const routes: Routes = [
 { 
   path: '/app',
   component: 'AppComponent'
 },
 { 
   path: '',
   redirectTo: '/app',
   pathMatch: 'full'
 }
];

阅读Angular Router文档以获取更多信息。