我有一个这样的网址:http://foo.bar/#/some/other/path
如何将“some/other/path”捕获为路由参数?
我试过这个:
var App = angular.module("App", [])
.config(function($routeProvider){
$routeProvider
.when('/:path', { controller: ListCtrl, templateUrl: 'list.html'})
.otherwise({ redirectTo: '/'})
});
但:path
只是给我some
而不是some/other/path