参见英文答案 >
Equivalent of Angular 1 otherwise route in Angular 25个
我在Angular 2中寻找$urlRouterProvider.otherwise的等价物.
原文链接:https://www.f2er.com/angularjs/240538.html我在Angular 2中寻找$urlRouterProvider.otherwise的等价物.
更多细节:
我有这样的路由器定义:
@RouteConfig([ { path: "/",component: MultiPost,name: "Home",useAsDefault: true },{ path: "/m/:collectionName/:categoryName/:page",name: "MultiPost" } ])
这两条路线都运行得很好,例如当我按下/或/ m / sth / sth / 0时,我得到了我想要的东西.
但当我点击/ kdfsgdshdjf这样的随机网址时,没有任何反应.页面呈现并且< router-outlet>没有匹配的路由是空的.
我想要做的是将所有不匹配的路由重定向到默认路由.我需要类似$urlRouterProvider.otherwise(“/”);的东西.
有谁知道怎么做?