我正在尝试将角度路由与现有应用集成。 webapp已使用angular,但本身并不使用路由。
我能够手动整合路由,我的路由js如下所示
phonecatApp.config(['$routeProvider',
function($routeProvider) {
$routeProvider.
when('/list1.jsp', {
templateUrl: '/mycontext/templates/list1.jsp',
}).
when('/list2.jsp', {
templateUrl: '/mycontext/templates/list2.jsp',
}).
otherwise({
});
}]);
使用几个文件的路由后,我发现了一个常见的模式,我的#path非常类似于模板的路径。因此,我想知道是否有任何方法可以获得路径中的下一个URL,以便我可以动态创建回退。例如
otherwise({
nextURL = $nxtURL;
redirectTo: '/mycontext/templates/'+nextURL;
});