Wildcard selector in the middle in Angular 2 router
问题 I am trying to develop a project with Angular.js 2. I am trying to use the router. I am trying to create a route with parameters to catch things like following: /m/SOMETHING1/c/SOME/THING2/p/SOMETHING3 Please note that SOME/THING2 is a string, that may include 0 or more / in it What I need for Route Definition is something like: { path: "/m/:sth1Var/c/*sth2Var/p/:sth3Var", component: MultiPost, name: "RouteName" } But I couldn't find a way to use wildcard character (*) in the middle. Is the