AngularJS 1.0.7 routeParams解析

我的app.js中有这个规则:

$routeProvider.when('/:language/rental-:type-:departure', {templateUrl: 'partials/rental.html', controller: 'itemCtrl'});

当用户键入以下网址时:/ en / rental-houses-santa-cruz-tenerife

然后:

var type = $routeParams.type;     # houses-santa-cruz                                  
var departure = $routeParams.departure; # tenerife

当我的预期结果是:

type = houses
departure = santa-cruz-tenerife

有没有办法实现这个目标?

最佳答案 升级到角度1.2以执行此操作.

处理角度的标准方法是通过ngRoute和正则表达式(如here和here’s a plunker所示),但角度1.0.8不允许在路径模式中使用正则表达式(see here,ctrl f用于switchRouteMatcher) ).

如果将版本升级到1.2是不可能的,你可以fork angular 1.0.8并添加更新switchRouteMatcher方法.

点赞